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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.11"/>
<title>gtkmm: Gtk::SelectionData Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">gtkmm
 <span id="projectnumber">2.24.4</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.11 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="pages.html"><span>Related Pages</span></a></li>
<li><a href="modules.html"><span>Modules</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="inherits.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="namespaceGtk.html">Gtk</a></li><li class="navelem"><a class="el" href="classGtk_1_1SelectionData.html">SelectionData</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="#pub-static-methods">Static Public Member Functions</a> |
<a href="#pro-attribs">Protected Attributes</a> |
<a href="#related">Related Functions</a> |
<a href="classGtk_1_1SelectionData-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">Gtk::SelectionData Class Reference</div> </div>
</div><!--header-->
<div class="contents">
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:a960d5979b57c7a2a9d025b4c3bdce3d4"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#a960d5979b57c7a2a9d025b4c3bdce3d4">SelectionData</a> ()</td></tr>
<tr class="separator:a960d5979b57c7a2a9d025b4c3bdce3d4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a737d81c0ec50c493a362851153fb37d0"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#a737d81c0ec50c493a362851153fb37d0">SelectionData</a> (GtkSelectionData* gobject, bool make_a_copy=true)</td></tr>
<tr class="separator:a737d81c0ec50c493a362851153fb37d0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a38e56cf805c11aa747c010f4f3aaf3df"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#a38e56cf805c11aa747c010f4f3aaf3df">SelectionData</a> (const <a class="el" href="classGtk_1_1SelectionData.html">SelectionData</a>& other)</td></tr>
<tr class="separator:a38e56cf805c11aa747c010f4f3aaf3df"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3f4a823c42ea8380d0b70c209b62e979"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1SelectionData.html">SelectionData</a>& </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#a3f4a823c42ea8380d0b70c209b62e979">operator=</a> (const <a class="el" href="classGtk_1_1SelectionData.html">SelectionData</a>& other)</td></tr>
<tr class="separator:a3f4a823c42ea8380d0b70c209b62e979"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af373da78f2d3a286bd92df38bd9984b1"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#af373da78f2d3a286bd92df38bd9984b1">SelectionData</a> (<a class="el" href="classGtk_1_1SelectionData.html">SelectionData</a>&& other) noexcept</td></tr>
<tr class="separator:af373da78f2d3a286bd92df38bd9984b1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adeb535aa89906008b02f8749466622ee"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1SelectionData.html">SelectionData</a>& </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#adeb535aa89906008b02f8749466622ee">operator=</a> (<a class="el" href="classGtk_1_1SelectionData.html">SelectionData</a>&& other) noexcept</td></tr>
<tr class="separator:adeb535aa89906008b02f8749466622ee"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad9c65ed8c98a4b8edcfb1d8fac189d13"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#ad9c65ed8c98a4b8edcfb1d8fac189d13">~SelectionData</a> () noexcept</td></tr>
<tr class="separator:ad9c65ed8c98a4b8edcfb1d8fac189d13"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a027d31220e644e2ebb048a6cdd75a43f"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#a027d31220e644e2ebb048a6cdd75a43f">swap</a> (<a class="el" href="classGtk_1_1SelectionData.html">SelectionData</a>& other) noexcept</td></tr>
<tr class="separator:a027d31220e644e2ebb048a6cdd75a43f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a64da01e677cb9937a08d5eee606374f1"><td class="memItemLeft" align="right" valign="top">GtkSelectionData* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#a64da01e677cb9937a08d5eee606374f1">gobj</a> ()</td></tr>
<tr class="memdesc:a64da01e677cb9937a08d5eee606374f1"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C instance. <a href="#a64da01e677cb9937a08d5eee606374f1">More...</a><br /></td></tr>
<tr class="separator:a64da01e677cb9937a08d5eee606374f1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a61975208c3a824d985a876d76b82791d"><td class="memItemLeft" align="right" valign="top">const GtkSelectionData* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#a61975208c3a824d985a876d76b82791d">gobj</a> () const </td></tr>
<tr class="memdesc:a61975208c3a824d985a876d76b82791d"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C instance. <a href="#a61975208c3a824d985a876d76b82791d">More...</a><br /></td></tr>
<tr class="separator:a61975208c3a824d985a876d76b82791d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a553aea8a0ef83b67096e7ed26ea5d785"><td class="memItemLeft" align="right" valign="top">GtkSelectionData* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#a553aea8a0ef83b67096e7ed26ea5d785">gobj_copy</a> () const </td></tr>
<tr class="memdesc:a553aea8a0ef83b67096e7ed26ea5d785"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C instance. The caller is responsible for freeing it. Use when directly setting fields in structs. <a href="#a553aea8a0ef83b67096e7ed26ea5d785">More...</a><br /></td></tr>
<tr class="separator:a553aea8a0ef83b67096e7ed26ea5d785"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa5d6c006f1e575808bb64c3a1724eb87"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#aa5d6c006f1e575808bb64c3a1724eb87">set</a> (int format, const guint8* data, int length)</td></tr>
<tr class="separator:aa5d6c006f1e575808bb64c3a1724eb87"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3f34e9f6ec1986cd4c299c89585d7926"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#a3f34e9f6ec1986cd4c299c89585d7926">set</a> (const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>& type, int format, const guint8* data, int length)</td></tr>
<tr class="memdesc:a3f34e9f6ec1986cd4c299c89585d7926"><td class="mdescLeft"> </td><td class="mdescRight">Assign a memory block of raw data. <a href="#a3f34e9f6ec1986cd4c299c89585d7926">More...</a><br /></td></tr>
<tr class="separator:a3f34e9f6ec1986cd4c299c89585d7926"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1464571fb61f96ac66f15731e8214091"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#a1464571fb61f96ac66f15731e8214091">set</a> (const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>& type, const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a>& data)</td></tr>
<tr class="memdesc:a1464571fb61f96ac66f15731e8214091"><td class="mdescLeft"> </td><td class="mdescRight">Assign a string of raw data. <a href="#a1464571fb61f96ac66f15731e8214091">More...</a><br /></td></tr>
<tr class="separator:a1464571fb61f96ac66f15731e8214091"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a85a4ed9fd2da8ff6174842d3c53167e3"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#a85a4ed9fd2da8ff6174842d3c53167e3">set_text</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a>& data)</td></tr>
<tr class="memdesc:a85a4ed9fd2da8ff6174842d3c53167e3"><td class="mdescLeft"> </td><td class="mdescRight">Assign UTF-8 encoded text. <a href="#a85a4ed9fd2da8ff6174842d3c53167e3">More...</a><br /></td></tr>
<tr class="separator:a85a4ed9fd2da8ff6174842d3c53167e3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad6fe5dc64610a8ef8b76582e09facaea"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#ad6fe5dc64610a8ef8b76582e09facaea">get_text</a> () const </td></tr>
<tr class="memdesc:ad6fe5dc64610a8ef8b76582e09facaea"><td class="mdescLeft"> </td><td class="mdescRight">Gets the contents of the selection data as a UTF-8 string. <a href="#ad6fe5dc64610a8ef8b76582e09facaea">More...</a><br /></td></tr>
<tr class="separator:ad6fe5dc64610a8ef8b76582e09facaea"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abbcfbbbbd1bbc7d581711f32b97b938a"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#abbcfbbbbd1bbc7d581711f32b97b938a">set_pixbuf</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> >& pixbuf)</td></tr>
<tr class="memdesc:abbcfbbbbd1bbc7d581711f32b97b938a"><td class="mdescLeft"> </td><td class="mdescRight">Sets the contents of the selection from a <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> The pixbuf is converted to the form determined by <em>selection_data->target</em>. <a href="#abbcfbbbbd1bbc7d581711f32b97b938a">More...</a><br /></td></tr>
<tr class="separator:abbcfbbbbd1bbc7d581711f32b97b938a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9c39b784e5977aac600b369c0062bb2f"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#a9c39b784e5977aac600b369c0062bb2f">get_pixbuf</a> ()</td></tr>
<tr class="memdesc:a9c39b784e5977aac600b369c0062bb2f"><td class="mdescLeft"> </td><td class="mdescRight">Gets the contents of the selection data as a <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>. <a href="#a9c39b784e5977aac600b369c0062bb2f">More...</a><br /></td></tr>
<tr class="separator:a9c39b784e5977aac600b369c0062bb2f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a32adbe8fe464cc6572c2337951fae84e"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#a32adbe8fe464cc6572c2337951fae84e">get_pixbuf</a> () const </td></tr>
<tr class="memdesc:a32adbe8fe464cc6572c2337951fae84e"><td class="mdescLeft"> </td><td class="mdescRight">Gets the contents of the selection data as a <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>. <a href="#a32adbe8fe464cc6572c2337951fae84e">More...</a><br /></td></tr>
<tr class="separator:a32adbe8fe464cc6572c2337951fae84e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa93d21e8a0ae71cde7f6a92e48bc0a1e"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#aa93d21e8a0ae71cde7f6a92e48bc0a1e">set_uris</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/group__ContHandles.html#ga66b4a4b57f64be3fdc1972d8bf93723a">Glib::StringArrayHandle</a>& uris)</td></tr>
<tr class="memdesc:aa93d21e8a0ae71cde7f6a92e48bc0a1e"><td class="mdescLeft"> </td><td class="mdescRight">Sets the contents of the selection from a list of URIs. <a href="#aa93d21e8a0ae71cde7f6a92e48bc0a1e">More...</a><br /></td></tr>
<tr class="separator:aa93d21e8a0ae71cde7f6a92e48bc0a1e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a49dc9543e60c67f9a1bc836df1c08cc5"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/group__ContHandles.html#ga66b4a4b57f64be3fdc1972d8bf93723a">Glib::StringArrayHandle</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#a49dc9543e60c67f9a1bc836df1c08cc5">get_uris</a> () const </td></tr>
<tr class="memdesc:a49dc9543e60c67f9a1bc836df1c08cc5"><td class="mdescLeft"> </td><td class="mdescRight">Gets the contents of the selection data as a container of URIs. <a href="#a49dc9543e60c67f9a1bc836df1c08cc5">More...</a><br /></td></tr>
<tr class="separator:a49dc9543e60c67f9a1bc836df1c08cc5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0dd1ae04cb843a1c9648ea62c81a8841"><td class="memItemLeft" align="right" valign="top">const guchar* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#a0dd1ae04cb843a1c9648ea62c81a8841">get_data</a> () const </td></tr>
<tr class="memdesc:a0dd1ae04cb843a1c9648ea62c81a8841"><td class="mdescLeft"> </td><td class="mdescRight">Retrieves the raw data of the selection. <a href="#a0dd1ae04cb843a1c9648ea62c81a8841">More...</a><br /></td></tr>
<tr class="separator:a0dd1ae04cb843a1c9648ea62c81a8841"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5c8913e1086614c80f4e84325c649d42"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#a5c8913e1086614c80f4e84325c649d42">get_length</a> () const </td></tr>
<tr class="memdesc:a5c8913e1086614c80f4e84325c649d42"><td class="mdescLeft"> </td><td class="mdescRight">Retrieves the length of the raw data of the selection. <a href="#a5c8913e1086614c80f4e84325c649d42">More...</a><br /></td></tr>
<tr class="separator:a5c8913e1086614c80f4e84325c649d42"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a652b34830f8c54515f3a70f458e6c152"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#a652b34830f8c54515f3a70f458e6c152">get_data_as_string</a> () const </td></tr>
<tr class="separator:a652b34830f8c54515f3a70f458e6c152"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad3cb66db1f8f10015ad4fd01be163e93"><td class="memItemLeft" align="right" valign="top">GdkAtom </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#ad3cb66db1f8f10015ad4fd01be163e93">get_selection</a> () const </td></tr>
<tr class="memdesc:ad3cb66db1f8f10015ad4fd01be163e93"><td class="mdescLeft"> </td><td class="mdescRight">Retrieves the selection Gdk::Atom of the selection data. <a href="#ad3cb66db1f8f10015ad4fd01be163e93">More...</a><br /></td></tr>
<tr class="separator:ad3cb66db1f8f10015ad4fd01be163e93"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a34ee1b33006bf4f2be11c8fdb65df33e"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#a34ee1b33006bf4f2be11c8fdb65df33e">get_target</a> () const </td></tr>
<tr class="memdesc:a34ee1b33006bf4f2be11c8fdb65df33e"><td class="mdescLeft"> </td><td class="mdescRight">Retrieves the target of the selection. <a href="#a34ee1b33006bf4f2be11c8fdb65df33e">More...</a><br /></td></tr>
<tr class="separator:a34ee1b33006bf4f2be11c8fdb65df33e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaa7563f7e66911e324546f10405044da"><td class="memItemLeft" align="right" valign="top"><a class="el" href="namespaceGdk.html#a4d1817402a22b7fe24d1199d8e425e39">Gdk::ArrayHandle_AtomString</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#aaa7563f7e66911e324546f10405044da">get_targets</a> () const </td></tr>
<tr class="memdesc:aaa7563f7e66911e324546f10405044da"><td class="mdescLeft"> </td><td class="mdescRight">See also <a class="el" href="classGtk_1_1Clipboard.html#ae3be3a0d85849117a284f8a1cbfdb98e" title="Requests the contents of the clipboard as list of supported targets. ">Gtk::Clipboard::request_targets()</a> <a href="#aaa7563f7e66911e324546f10405044da">More...</a><br /></td></tr>
<tr class="separator:aaa7563f7e66911e324546f10405044da"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a20257cb7db350176a9b66d6ce2dedcd4"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#a20257cb7db350176a9b66d6ce2dedcd4">get_data_type</a> () const </td></tr>
<tr class="memdesc:a20257cb7db350176a9b66d6ce2dedcd4"><td class="mdescLeft"> </td><td class="mdescRight">Returns the type of the data as set by <a class="el" href="classGtk_1_1SelectionData.html#aa5d6c006f1e575808bb64c3a1724eb87">SelectionData::set()</a>. <a href="#a20257cb7db350176a9b66d6ce2dedcd4">More...</a><br /></td></tr>
<tr class="separator:a20257cb7db350176a9b66d6ce2dedcd4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0dd95ca2a722651db2ad3e7d1e30f260"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#a0dd95ca2a722651db2ad3e7d1e30f260">get_format</a> () const </td></tr>
<tr class="memdesc:a0dd95ca2a722651db2ad3e7d1e30f260"><td class="mdescLeft"> </td><td class="mdescRight">Retrieves the format of the selection. <a href="#a0dd95ca2a722651db2ad3e7d1e30f260">More...</a><br /></td></tr>
<tr class="separator:a0dd95ca2a722651db2ad3e7d1e30f260"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abe771f4375acf6e152fbe4666534534b"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Display.html">Gdk::Display</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#abe771f4375acf6e152fbe4666534534b">get_display</a> ()</td></tr>
<tr class="memdesc:abe771f4375acf6e152fbe4666534534b"><td class="mdescLeft"> </td><td class="mdescRight">Retrieves the display of the selection. <a href="#abe771f4375acf6e152fbe4666534534b">More...</a><br /></td></tr>
<tr class="separator:abe771f4375acf6e152fbe4666534534b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aca4a73f550bd8172b42e76031bc8b985"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGdk_1_1Display.html">Gdk::Display</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#aca4a73f550bd8172b42e76031bc8b985">get_display</a> () const </td></tr>
<tr class="memdesc:aca4a73f550bd8172b42e76031bc8b985"><td class="mdescLeft"> </td><td class="mdescRight">Retrieves the display of the selection. <a href="#aca4a73f550bd8172b42e76031bc8b985">More...</a><br /></td></tr>
<tr class="separator:aca4a73f550bd8172b42e76031bc8b985"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9fbf51e548ecb51d983531ecccf49fb9"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#a9fbf51e548ecb51d983531ecccf49fb9">targets_include_uri</a> () const </td></tr>
<tr class="memdesc:a9fbf51e548ecb51d983531ecccf49fb9"><td class="mdescLeft"> </td><td class="mdescRight">Given a <a class="el" href="classGtk_1_1SelectionData.html">Gtk::SelectionData</a> object holding a list of targets, determines if any of the targets in <em>targets</em> can be used to provide a list or URIs. <a href="#a9fbf51e548ecb51d983531ecccf49fb9">More...</a><br /></td></tr>
<tr class="separator:a9fbf51e548ecb51d983531ecccf49fb9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a589b34bbc75182de5195dd5a22708892"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#a589b34bbc75182de5195dd5a22708892">targets_include_text</a> () const </td></tr>
<tr class="memdesc:a589b34bbc75182de5195dd5a22708892"><td class="mdescLeft"> </td><td class="mdescRight">Given a <a class="el" href="classGtk_1_1SelectionData.html">Gtk::SelectionData</a> object holding a list of targets, determines if any of the targets in <em>targets</em> can be used to provide text. <a href="#a589b34bbc75182de5195dd5a22708892">More...</a><br /></td></tr>
<tr class="separator:a589b34bbc75182de5195dd5a22708892"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a23502b282ec4546943b6fb4c2d0d8e3d"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#a23502b282ec4546943b6fb4c2d0d8e3d">targets_include_rich_text</a> (const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1TextBuffer.html">TextBuffer</a> >& buffer) const </td></tr>
<tr class="memdesc:a23502b282ec4546943b6fb4c2d0d8e3d"><td class="mdescLeft"> </td><td class="mdescRight">Given a <a class="el" href="classGtk_1_1SelectionData.html">Gtk::SelectionData</a> object holding a list of targets, determines if any of the targets in <em>targets</em> can be used to provide rich text. <a href="#a23502b282ec4546943b6fb4c2d0d8e3d">More...</a><br /></td></tr>
<tr class="separator:a23502b282ec4546943b6fb4c2d0d8e3d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a97521408bbef83c56ed4b8c3faa53bd8"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#a97521408bbef83c56ed4b8c3faa53bd8">targets_include_image</a> (bool writable=true) const </td></tr>
<tr class="memdesc:a97521408bbef83c56ed4b8c3faa53bd8"><td class="mdescLeft"> </td><td class="mdescRight">Given a <a class="el" href="classGtk_1_1SelectionData.html">Gtk::SelectionData</a> object holding a list of targets, determines if any of the targets in <em>targets</em> can be used to provide a <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>. <a href="#a97521408bbef83c56ed4b8c3faa53bd8">More...</a><br /></td></tr>
<tr class="separator:a97521408bbef83c56ed4b8c3faa53bd8"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-methods"></a>
Static Public Member Functions</h2></td></tr>
<tr class="memitem:a145eef69ee940d37fdab6285d4b33d91"><td class="memItemLeft" align="right" valign="top">static GType </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#a145eef69ee940d37fdab6285d4b33d91">get_type</a> ()</td></tr>
<tr class="memdesc:a145eef69ee940d37fdab6285d4b33d91"><td class="mdescLeft"> </td><td class="mdescRight">Get the GType for this class, for use with the underlying GObject type system. <a href="#a145eef69ee940d37fdab6285d4b33d91">More...</a><br /></td></tr>
<tr class="separator:a145eef69ee940d37fdab6285d4b33d91"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-attribs"></a>
Protected Attributes</h2></td></tr>
<tr class="memitem:aeccc1384f7e8decb49a0188c76c99658"><td class="memItemLeft" align="right" valign="top">GtkSelectionData* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#aeccc1384f7e8decb49a0188c76c99658">gobject_</a></td></tr>
<tr class="separator:aeccc1384f7e8decb49a0188c76c99658"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="related"></a>
Related Functions</h2></td></tr>
<tr><td class="ititle" colspan="2"><p>(Note that these are not member functions.) </p>
</td></tr>
<tr class="memitem:a4ecb0408a4349572c98c2969d4c3ca9a"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#a4ecb0408a4349572c98c2969d4c3ca9a">swap</a> (<a class="el" href="classGtk_1_1SelectionData.html">SelectionData</a>& lhs, <a class="el" href="classGtk_1_1SelectionData.html">SelectionData</a>& rhs) noexcept</td></tr>
<tr class="separator:a4ecb0408a4349572c98c2969d4c3ca9a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6e49ccb1719123dd777a6b9b35004dfe"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGtk_1_1SelectionData.html">Gtk::SelectionData</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1SelectionData.html#a6e49ccb1719123dd777a6b9b35004dfe">wrap</a> (GtkSelectionData* object, bool take_copy=false)</td></tr>
<tr class="memdesc:a6e49ccb1719123dd777a6b9b35004dfe"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. <a href="#a6e49ccb1719123dd777a6b9b35004dfe">More...</a><br /></td></tr>
<tr class="separator:a6e49ccb1719123dd777a6b9b35004dfe"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a class="anchor" id="a960d5979b57c7a2a9d025b4c3bdce3d4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Gtk::SelectionData::SelectionData </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a737d81c0ec50c493a362851153fb37d0"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">Gtk::SelectionData::SelectionData </td>
<td>(</td>
<td class="paramtype">GtkSelectionData * </td>
<td class="paramname"><em>gobject</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>make_a_copy</em> = <code>true</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">explicit</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a38e56cf805c11aa747c010f4f3aaf3df"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Gtk::SelectionData::SelectionData </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1SelectionData.html">SelectionData</a>& </td>
<td class="paramname"><em>other</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="af373da78f2d3a286bd92df38bd9984b1"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">Gtk::SelectionData::SelectionData </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classGtk_1_1SelectionData.html">SelectionData</a>&& </td>
<td class="paramname"><em>other</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">noexcept</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="ad9c65ed8c98a4b8edcfb1d8fac189d13"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">Gtk::SelectionData::~SelectionData </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">noexcept</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="a0dd1ae04cb843a1c9648ea62c81a8841"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const guchar* Gtk::SelectionData::get_data </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Retrieves the raw data of the selection. </p>
<dl class="since_2_14"><dt><b><a class="el" href="since_2_14.html#_since_2_14000128">Since gtkmm 2.14:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>The raw data of the selection. </dd></dl>
</div>
</div>
<a class="anchor" id="a652b34830f8c54515f3a70f458e6c152"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> Gtk::SelectionData::get_data_as_string </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a20257cb7db350176a9b66d6ce2dedcd4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> Gtk::SelectionData::get_data_type </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns the type of the data as set by <a class="el" href="classGtk_1_1SelectionData.html#aa5d6c006f1e575808bb64c3a1724eb87">SelectionData::set()</a>. </p>
</div>
</div>
<a class="anchor" id="abe771f4375acf6e152fbe4666534534b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGdk_1_1Display.html">Gdk::Display</a>> Gtk::SelectionData::get_display </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Retrieves the display of the selection. </p>
<dl class="since_2_14"><dt><b><a class="el" href="since_2_14.html#_since_2_14000132">Since gtkmm 2.14:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>The display of the selection. </dd></dl>
</div>
</div>
<a class="anchor" id="aca4a73f550bd8172b42e76031bc8b985"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><const <a class="el" href="classGdk_1_1Display.html">Gdk::Display</a>> Gtk::SelectionData::get_display </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Retrieves the display of the selection. </p>
<dl class="since_2_14"><dt><b><a class="el" href="since_2_14.html#_since_2_14000133">Since gtkmm 2.14:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>The display of the selection. </dd></dl>
</div>
</div>
<a class="anchor" id="a0dd95ca2a722651db2ad3e7d1e30f260"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int Gtk::SelectionData::get_format </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Retrieves the format of the selection. </p>
<dl class="since_2_14"><dt><b><a class="el" href="since_2_14.html#_since_2_14000131">Since gtkmm 2.14:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>The format of the selection. </dd></dl>
</div>
</div>
<a class="anchor" id="a5c8913e1086614c80f4e84325c649d42"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int Gtk::SelectionData::get_length </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Retrieves the length of the raw data of the selection. </p>
<dl class="since_2_14"><dt><b><a class="el" href="since_2_14.html#_since_2_14000129">Since gtkmm 2.14:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>The length of the data of the selection. </dd></dl>
</div>
</div>
<a class="anchor" id="a9c39b784e5977aac600b369c0062bb2f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>> Gtk::SelectionData::get_pixbuf </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the contents of the selection data as a <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>. </p>
<dl class="since_2_6"><dt><b><a class="el" href="since_2_6.html#_since_2_6000142">Since gtkmm 2.6:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>If the selection data contained a recognized image type and it could be converted to a <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>, a newly allocated pixbuf is returned, otherwise <code>nullptr</code>. If the result is non-<code>nullptr</code> it must be freed with Glib::object_unref(). </dd></dl>
</div>
</div>
<a class="anchor" id="a32adbe8fe464cc6572c2337951fae84e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a><const <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>> Gtk::SelectionData::get_pixbuf </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the contents of the selection data as a <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>. </p>
<dl class="since_2_6"><dt><b><a class="el" href="since_2_6.html#_since_2_6000143">Since gtkmm 2.6:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>If the selection data contained a recognized image type and it could be converted to a <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>, a newly allocated pixbuf is returned, otherwise <code>nullptr</code>. If the result is non-<code>nullptr</code> it must be freed with Glib::object_unref(). </dd></dl>
</div>
</div>
<a class="anchor" id="ad3cb66db1f8f10015ad4fd01be163e93"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GdkAtom Gtk::SelectionData::get_selection </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Retrieves the selection Gdk::Atom of the selection data. </p>
<dl class="since_2_16"><dt><b><a class="el" href="since_2_16.html#_since_2_16000090">Since gtkmm 2.16:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd>The selection Gdk::Atom of the selection data. </dd></dl>
</div>
</div>
<a class="anchor" id="a34ee1b33006bf4f2be11c8fdb65df33e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> Gtk::SelectionData::get_target </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Retrieves the target of the selection. </p>
<dl class="since_2_14"><dt><b><a class="el" href="since_2_14.html#_since_2_14000130">Since gtkmm 2.14:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="aaa7563f7e66911e324546f10405044da"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="namespaceGdk.html#a4d1817402a22b7fe24d1199d8e425e39">Gdk::ArrayHandle_AtomString</a> Gtk::SelectionData::get_targets </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>See also <a class="el" href="classGtk_1_1Clipboard.html#ae3be3a0d85849117a284f8a1cbfdb98e" title="Requests the contents of the clipboard as list of supported targets. ">Gtk::Clipboard::request_targets()</a> </p>
</div>
</div>
<a class="anchor" id="ad6fe5dc64610a8ef8b76582e09facaea"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> Gtk::SelectionData::get_text </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the contents of the selection data as a UTF-8 string. </p>
<dl class="section return"><dt>Returns</dt><dd>If the selection data contained a recognized text type and it could be converted to UTF-8, a string containing the converted text, otherwise an empty string. </dd></dl>
</div>
</div>
<a class="anchor" id="a145eef69ee940d37fdab6285d4b33d91"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static GType Gtk::SelectionData::get_type </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Get the GType for this class, for use with the underlying GObject type system. </p>
</div>
</div>
<a class="anchor" id="a49dc9543e60c67f9a1bc836df1c08cc5"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/group__ContHandles.html#ga66b4a4b57f64be3fdc1972d8bf93723a">Glib::StringArrayHandle</a> Gtk::SelectionData::get_uris </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the contents of the selection data as a container of URIs. </p>
<dl class="section return"><dt>Returns</dt><dd>If the selection data contains a list of URIs, a container containing the URIs, otherwise an empty container.</dd></dl>
<dl class="since_2_6"><dt><b><a class="el" href="since_2_6.html#_since_2_6000145">Since gtkmm 2.6:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="a64da01e677cb9937a08d5eee606374f1"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">GtkSelectionData* Gtk::SelectionData::gobj </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Provides access to the underlying C instance. </p>
</div>
</div>
<a class="anchor" id="a61975208c3a824d985a876d76b82791d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">const GtkSelectionData* Gtk::SelectionData::gobj </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">inline</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Provides access to the underlying C instance. </p>
</div>
</div>
<a class="anchor" id="a553aea8a0ef83b67096e7ed26ea5d785"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GtkSelectionData* Gtk::SelectionData::gobj_copy </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Provides access to the underlying C instance. The caller is responsible for freeing it. Use when directly setting fields in structs. </p>
</div>
</div>
<a class="anchor" id="a3f4a823c42ea8380d0b70c209b62e979"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1SelectionData.html">SelectionData</a>& Gtk::SelectionData::operator= </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGtk_1_1SelectionData.html">SelectionData</a>& </td>
<td class="paramname"><em>other</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="adeb535aa89906008b02f8749466622ee"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1SelectionData.html">SelectionData</a>& Gtk::SelectionData::operator= </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classGtk_1_1SelectionData.html">SelectionData</a>&& </td>
<td class="paramname"><em>other</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">noexcept</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="aa5d6c006f1e575808bb64c3a1724eb87"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::SelectionData::set </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>format</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const guint8 * </td>
<td class="paramname"><em>data</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>length</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a3f34e9f6ec1986cd4c299c89585d7926"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::SelectionData::set </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> & </td>
<td class="paramname"><em>type</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>format</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const guint8 * </td>
<td class="paramname"><em>data</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>length</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Assign a memory block of raw data. </p>
<p>Store new data into the <a class="el" href="classGtk_1_1SelectionData.html">Gtk::SelectionData</a> object. Should <em>only</em> by called from a selection handler callback. A 0-byte terminates the stored data. </p><dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">type</td><td>The type of the selection. </td></tr>
<tr><td class="paramname">format</td><td>The data format, i.e. the number of bits in a unit. </td></tr>
<tr><td class="paramname">data</td><td>Pointer to the data (will be copied). </td></tr>
<tr><td class="paramname">length</td><td>The length of the data block in bytes. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a1464571fb61f96ac66f15731e8214091"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::SelectionData::set </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> & </td>
<td class="paramname"><em>type</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="elRef" doxygen="libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a01681.html#ga32db3d9898c44d3b3a578b560f7758cc">std::string</a> & </td>
<td class="paramname"><em>data</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Assign a string of raw data. </p>
<p>Store new data into the <a class="el" href="classGtk_1_1SelectionData.html">Gtk::SelectionData</a> object. Should <em>only</em> by called from a selection handler callback. </p><dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">type</td><td>The type of the selection. </td></tr>
<tr><td class="paramname">data</td><td>A string that contains the data (does not have to be text). </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="abbcfbbbbd1bbc7d581711f32b97b938a"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::SelectionData::set_pixbuf </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> >& </td>
<td class="paramname"><em>pixbuf</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the contents of the selection from a <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a> The pixbuf is converted to the form determined by <em>selection_data->target</em>. </p>
<dl class="since_2_6"><dt><b><a class="el" href="since_2_6.html#_since_2_6000141">Since gtkmm 2.6:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">pixbuf</td><td>A <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if the selection was successfully set, otherwise <code>false</code>. </dd></dl>
</div>
</div>
<a class="anchor" id="a85a4ed9fd2da8ff6174842d3c53167e3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::SelectionData::set_text </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1ustring.html">Glib::ustring</a> & </td>
<td class="paramname"><em>data</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Assign UTF-8 encoded text. </p>
<p>Sets the contents of the selection from a UTF-8 encoded string. The string is converted to the form determined by <a class="el" href="classGtk_1_1SelectionData.html#a34ee1b33006bf4f2be11c8fdb65df33e" title="Retrieves the target of the selection. ">get_target()</a>. </p><dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">data</td><td>A UTF-8 encoded string. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if the selection was successfully set, otherwise <code>false</code>. </dd></dl>
</div>
</div>
<a class="anchor" id="aa93d21e8a0ae71cde7f6a92e48bc0a1e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::SelectionData::set_uris </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/group__ContHandles.html#ga66b4a4b57f64be3fdc1972d8bf93723a">Glib::StringArrayHandle</a> & </td>
<td class="paramname"><em>uris</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets the contents of the selection from a list of URIs. </p>
<p>The string is converted to the form determined by <em>selection_data->target</em>.</p>
<dl class="since_2_6"><dt><b><a class="el" href="since_2_6.html#_since_2_6000144">Since gtkmm 2.6:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">uris</td><td>A <code>nullptr</code>-terminated array of strings holding URIs. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if the selection was successfully set, otherwise <code>false</code>. </dd></dl>
</div>
</div>
<a class="anchor" id="a027d31220e644e2ebb048a6cdd75a43f"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void Gtk::SelectionData::swap </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classGtk_1_1SelectionData.html">SelectionData</a>& </td>
<td class="paramname"><em>other</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">noexcept</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a97521408bbef83c56ed4b8c3faa53bd8"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::SelectionData::targets_include_image </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>writable</em> = <code>true</code></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Given a <a class="el" href="classGtk_1_1SelectionData.html">Gtk::SelectionData</a> object holding a list of targets, determines if any of the targets in <em>targets</em> can be used to provide a <a class="el" href="classGdk_1_1Pixbuf.html">Gdk::Pixbuf</a>. </p>
<dl class="since_2_6"><dt><b><a class="el" href="since_2_6.html#_since_2_6000146">Since gtkmm 2.6:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">writable</td><td>Whether to accept only targets for which GTK+ knows how to convert a pixbuf into the format. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if <em>selection_data</em> holds a list of targets, and a suitable target for images is included, otherwise <code>false</code>. </dd></dl>
</div>
</div>
<a class="anchor" id="a23502b282ec4546943b6fb4c2d0d8e3d"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::SelectionData::targets_include_rich_text </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGtk_1_1TextBuffer.html">TextBuffer</a> >& </td>
<td class="paramname"><em>buffer</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Given a <a class="el" href="classGtk_1_1SelectionData.html">Gtk::SelectionData</a> object holding a list of targets, determines if any of the targets in <em>targets</em> can be used to provide rich text. </p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000296">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">buffer</td><td>A <a class="el" href="classGtk_1_1TextBuffer.html" title="Multi-line attributed text that can be displayed by one or more Gtk::TextView widgets. ">Gtk::TextBuffer</a>. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if <em>selection_data</em> holds a list of targets, and a suitable target for rich text is included, otherwise <code>false</code>. </dd></dl>
</div>
</div>
<a class="anchor" id="a589b34bbc75182de5195dd5a22708892"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::SelectionData::targets_include_text </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Given a <a class="el" href="classGtk_1_1SelectionData.html">Gtk::SelectionData</a> object holding a list of targets, determines if any of the targets in <em>targets</em> can be used to provide text. </p>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if <em>selection_data</em> holds a list of targets, and a suitable target for text is included, otherwise <code>false</code>. </dd></dl>
</div>
</div>
<a class="anchor" id="a9fbf51e548ecb51d983531ecccf49fb9"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::SelectionData::targets_include_uri </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Given a <a class="el" href="classGtk_1_1SelectionData.html">Gtk::SelectionData</a> object holding a list of targets, determines if any of the targets in <em>targets</em> can be used to provide a list or URIs. </p>
<dl class="since_2_10"><dt><b><a class="el" href="since_2_10.html#_since_2_10000295">Since gtkmm 2.10:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if <em>selection_data</em> holds a list of targets, and a suitable target for URI lists is included, otherwise <code>false</code>. </dd></dl>
</div>
</div>
<h2 class="groupheader">Friends And Related Function Documentation</h2>
<a class="anchor" id="a4ecb0408a4349572c98c2969d4c3ca9a"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">void swap </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classGtk_1_1SelectionData.html">SelectionData</a>& </td>
<td class="paramname"><em>lhs</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGtk_1_1SelectionData.html">SelectionData</a>& </td>
<td class="paramname"><em>rhs</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">related</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">lhs</td><td>The left-hand side </td></tr>
<tr><td class="paramname">rhs</td><td>The right-hand side </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a6e49ccb1719123dd777a6b9b35004dfe"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1SelectionData.html">Gtk::SelectionData</a> wrap </td>
<td>(</td>
<td class="paramtype">GtkSelectionData * </td>
<td class="paramname"><em>object</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>take_copy</em> = <code>false</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">related</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>A <a class="elRef" doxygen="glibmm-2.4.tag:http://library.gnome.org/devel/glibmm/unstable/" href="http://library.gnome.org/devel/glibmm/unstable/namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">object</td><td>The C instance. </td></tr>
<tr><td class="paramname">take_copy</td><td>False if the result should take ownership of the C instance. True if it should take a new copy or ref. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A C++ instance that wraps this C instance. </dd></dl>
</div>
</div>
<h2 class="groupheader">Member Data Documentation</h2>
<a class="anchor" id="aeccc1384f7e8decb49a0188c76c99658"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">GtkSelectionData* Gtk::SelectionData::gobject_</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li>gtkmm/selectiondata.h</li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.11
</small></address>
</body>
</html>
|