1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>gtkmm 2.4: Gtk::ToolItem Class Reference</title>
<link href="doxygen.css" rel="stylesheet" type="text/css">
</head>
<body bgcolor="#ffffff">
<table border="0" width="100%">
<tr>
<td width="10%" height="40"><img src="../../images/gtkmm_logo.gif" alt="logo" border="0" width="100%" height="100%"/></td>
<td width="90%" height="40"><img src="../../images/top.gif" alt="top" width="100%" height="40"/></td>
</tr>
</table>
<center>
<a class="qindex" href="../../index.html">Main Page</a>
<a href="group__Widgets.html">Widgets</a>
<a class="qindex" href="namespaces.html"> Namespaces</a>
<a href="../../tutorial/html/index.html"> Book</a>
</center>
<hr width="100%"/>
<!-- begin main content -->
<div id="content">
<!-- Generated by Doxygen 1.5.1 -->
<div class="nav">
<a class="el" href="namespaceGtk.html">Gtk</a>::<a class="el" href="classGtk_1_1ToolItem.html">ToolItem</a></div>
<h1>Gtk::ToolItem Class Reference<br>
<small>
[<a class="el" href="group__Widgets.html">Widgets</a>]</small>
</h1><!-- doxytag: class="Gtk::ToolItem" --><!-- doxytag: inherits="Gtk::Bin" -->Inheritance diagram for Gtk::ToolItem:<p><center><img src="classGtk_1_1ToolItem__inherit__graph.png" border="0" usemap="#Gtk_1_1ToolItem__inherit__map" alt="Inheritance graph"></center>
<map name="Gtk_1_1ToolItem__inherit__map">
<area href="classGtk_1_1SeparatorToolItem.html" shape="rect" coords="5,625,173,652" alt="">
<area href="classGtk_1_1ToolButton.html" shape="rect" coords="197,625,317,652" alt="">
<area href="classGtk_1_1Bin.html" shape="rect" coords="137,470,209,497" alt="">
<area href="classGtk_1_1Container.html" shape="rect" coords="117,393,229,420" alt="">
<area href="classGtk_1_1Widget.html" shape="rect" coords="127,316,220,342" alt="">
<area href="classGtk_1_1Object.html" shape="rect" coords="61,238,152,265" alt="">
<area doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1Object.html" shape="rect" coords="63,161,156,188" alt="">
<area doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ObjectBase.html" shape="rect" coords="109,84,235,110" alt="">
<area doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1Interface.html" shape="rect" coords="184,161,293,188" alt="">
<area doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classsigc_1_1trackable.html" shape="rect" coords="116,6,228,33" alt="">
<area href="classAtk_1_1Implementor.html" shape="rect" coords="176,238,307,265" alt="">
<area href="classGtk_1_1MenuToolButton.html" shape="rect" coords="89,702,244,729" alt="">
<area href="classGtk_1_1ToggleToolButton.html" shape="rect" coords="268,702,428,729" alt="">
<area href="classGtk_1_1RadioToolButton.html" shape="rect" coords="271,780,425,806" alt="">
</map>
<center><font size="2">[<a href="graph_legend.html">legend</a>]</font></center><a href="classGtk_1_1ToolItem-members.html">List of all members.</a><table border="0" cellpadding="0" cellspacing="0">
<tr><td></td></tr>
<tr><td colspan="2"><br><h2>Public Member Functions</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#e8a9e2fb6948ad508e8014db65a91dee">get_expand</a> () const</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return value: <code>true</code> if <em>tool_item</em> is allocated extra space. <a href="#e8a9e2fb6948ad508e8014db65a91dee"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#5d13e445e3e85d44a94fde8f5ed870a4">get_homogeneous</a> () const</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return value: <code>true</code> if the item is the same size as other homogeneous. <a href="#5d13e445e3e85d44a94fde8f5ed870a4"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="classGtk_1_1IconSize.html">IconSize</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#7bd728c7e51e9fa1e56486bffc72f5e1">get_icon_size</a> () const</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return value: a <a class="el" href="classGtk_1_1IconSize.html">Gtk::IconSize</a> indicating the icon size used for <em>tool_item</em>. <a href="#7bd728c7e51e9fa1e56486bffc72f5e1"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#d4cb29d2bd25a1efd5624f6ffaa53f1f">get_is_important</a> () const</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return value: <code>true</code> if <em>tool_item</em> is considered important. <a href="#d4cb29d2bd25a1efd5624f6ffaa53f1f"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="group__gtkmmEnums.html#g84179a467b0ed4f61b4e325eb09b0b1c">Orientation</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#8c76329297c9623da751b283392b3d47">get_orientation</a> () const</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return value: a <a class="el" href="group__gtkmmEnums.html#g84179a467b0ed4f61b4e325eb09b0b1c">Gtk::Orientation</a> indicating the orientation. <a href="#8c76329297c9623da751b283392b3d47"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">const <a class="el" href="classGtk_1_1Widget.html">Widget</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#edc2aa93828aa0ce8e4dba1861efa40a">get_proxy_menu_item</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& menu_item_id) const</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">If <em>menu_item_id</em> matches the string passed to <a class="el" href="classGtk_1_1ToolItem.html#722227699766190dd162d8db5eedf817">set_proxy_menu_item()</a> return the corresponding <a class="el" href="classGtk_1_1MenuItem.html">Gtk::MenuItem</a>. <a href="#edc2aa93828aa0ce8e4dba1861efa40a"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="classGtk_1_1Widget.html">Widget</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#6477f6a307d97bf1435c6c1bb718131c">get_proxy_menu_item</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& menu_item_id)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">If <em>menu_item_id</em> matches the string passed to <a class="el" href="classGtk_1_1ToolItem.html#722227699766190dd162d8db5eedf817">set_proxy_menu_item()</a> return the corresponding <a class="el" href="classGtk_1_1MenuItem.html">Gtk::MenuItem</a>. <a href="#6477f6a307d97bf1435c6c1bb718131c"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="group__gtkmmEnums.html#g11df7b40133f3cd29b07bd87c969ff42">ReliefStyle</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#1bc0a71ff47b8a2d8055cd17841f7195">get_relief_style</a> () const</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return value: a <a class="el" href="group__gtkmmEnums.html#g11df7b40133f3cd29b07bd87c969ff42">Gtk::ReliefStyle</a> indicating the relief style used. <a href="#1bc0a71ff47b8a2d8055cd17841f7195"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="group__gtkmmEnums.html#g5aad48684bb486d0aaca8c5aceb64b58">ToolbarStyle</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#920bde19e4ba1188bfcb00c104115cbb">get_toolbar_style</a> () const</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return value: A <a class="el" href="group__gtkmmEnums.html#g5aad48684bb486d0aaca8c5aceb64b58">Gtk::ToolbarStyle</a> indicating the toolbar style used. <a href="#920bde19e4ba1188bfcb00c104115cbb"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#7d01fdf301e996f10f23ebd96bec7483">get_use_drag_window</a> () const</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return value: <code>true</code> if <em>tool_item</em> uses a drag window. <a href="#7d01fdf301e996f10f23ebd96bec7483"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#52c1c319ffd10109b21c5500e57d5ee5">get_visible_horizontal</a> () const</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return value: <code>true</code> if <em>tool_item</em> is visible on toolbars that are. <a href="#52c1c319ffd10109b21c5500e57d5ee5"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#bde84c05902a3e4ba7c6bcf79f7713e1">get_visible_vertical</a> () const</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return value: Whether <em>tool_item</em> is visible when the toolbar is docked vertically. <a href="#bde84c05902a3e4ba7c6bcf79f7713e1"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">const GtkToolItem* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#14b3df676cf3733d6bd87f5d4cc91c31">gobj</a> () const</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#14b3df676cf3733d6bd87f5d4cc91c31"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">GtkToolItem* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#14a91aa75fdf0d7377288f407f80ef79">gobj</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GtkObject. <a href="#14a91aa75fdf0d7377288f407f80ef79"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><<br>
bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#a9ddcfc920b41cfa50f53b0f2573854d">property_is_important</a> () const</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Whether the toolbar item is considered important. <a href="#a9ddcfc920b41cfa50f53b0f2573854d"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a><bool> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#1b6aa33cc3c06289f30c265af39c58c8">property_is_important</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Whether the toolbar item is considered important. <a href="#1b6aa33cc3c06289f30c265af39c58c8"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><<br>
bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#8c4fc55f6e351bac02be332c108851dc">property_visible_horizontal</a> () const</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Whether the toolbar item is visible when the toolbar is in a horizontal orientation. <a href="#8c4fc55f6e351bac02be332c108851dc"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a><bool> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#d99a7a41073ddae0cf4bae8be86d22bf">property_visible_horizontal</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Whether the toolbar item is visible when the toolbar is in a horizontal orientation. <a href="#d99a7a41073ddae0cf4bae8be86d22bf"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><<br>
bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#5a5591d526382a738dbf9eb17a0ad1a4">property_visible_vertical</a> () const</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Whether the toolbar item is visible when the toolbar is in a vertical orientation. <a href="#5a5591d526382a738dbf9eb17a0ad1a4"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a><bool> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#5eff71c790ea507fe09306f13f86c577">property_visible_vertical</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Whether the toolbar item is visible when the toolbar is in a vertical orientation. <a href="#5eff71c790ea507fe09306f13f86c577"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#47a4077527ad4fa5d3da33ca60892800">rebuild_menu</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Calling this function signals to the toolbar that the overflow menu item for <em>tool_item</em> has changed. <a href="#47a4077527ad4fa5d3da33ca60892800"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">const <a class="el" href="classGtk_1_1Widget.html">Widget</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#6a655de3e5929bc6f4f9a8e27882bdda">retrieve_proxy_menu_item</a> () const</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return value: The <a class="el" href="classGtk_1_1MenuItem.html">Gtk::MenuItem</a> that is going to appear in the. <a href="#6a655de3e5929bc6f4f9a8e27882bdda"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="classGtk_1_1Widget.html">Widget</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#5486d9d0bd8a4cbb4345aed9a99a50bc">retrieve_proxy_menu_item</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Return value: The <a class="el" href="classGtk_1_1MenuItem.html">Gtk::MenuItem</a> that is going to appear in the. <a href="#5486d9d0bd8a4cbb4345aed9a99a50bc"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#1c18c67797b1e635b0f8b7e55b2fdcea">set_expand</a> (bool expand=true)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets whether <em>tool_item</em> is allocated extra space when there is more room on the toolbar then needed for the items. <a href="#1c18c67797b1e635b0f8b7e55b2fdcea"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#64552ea9654a10a45a053a45a8593659">set_homogeneous</a> (bool homogeneous=true)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets whether <em>tool_item</em> is to be allocated the same size as other homogeneous items. <a href="#64552ea9654a10a45a053a45a8593659"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#a33895835f121fdf68fd02726a626ecf">set_is_important</a> (bool is_important=true)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets whether <em>tool_item</em> should be considered important. <a href="#a33895835f121fdf68fd02726a626ecf"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#722227699766190dd162d8db5eedf817">set_proxy_menu_item</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& menu_item_id, <a class="el" href="classGtk_1_1Widget.html">Widget</a>& menu_item)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets the <a class="el" href="classGtk_1_1MenuItem.html">Gtk::MenuItem</a> used in the toolbar overflow menu. <a href="#722227699766190dd162d8db5eedf817"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#eabf9f4f654dfedbc40d0b7b9bc3eacc">set_tooltip</a> (<a class="el" href="classGtk_1_1Tooltips.html">Tooltips</a>& tooltips, const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& tip_text, const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& tip_private=<a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>())</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets the <a class="el" href="classGtk_1_1Tooltips.html">Gtk::Tooltips</a> object to be used for <em>tool_item</em> , the text to be displayed as tooltip on the item and the private text to be used. <a href="#eabf9f4f654dfedbc40d0b7b9bc3eacc"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#c62a32a9d9a9bf16c4fc4dd1e1c11bbc">set_tooltip_markup</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& markup)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets the markup text to be displayed as tooltip on the item. <a href="#c62a32a9d9a9bf16c4fc4dd1e1c11bbc"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#2f4067d5070b6395a8c6be040fc67364">set_tooltip_text</a> (const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& text)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets the text to be displayed as tooltip on the item. <a href="#2f4067d5070b6395a8c6be040fc67364"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#da08f867c3bb0abd2f8041925782b9cc">set_use_drag_window</a> (bool use_drag_window=true)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets whether <em>tool_item</em> has a drag window. <a href="#da08f867c3bb0abd2f8041925782b9cc"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#f98afa328d870e51fe18ac58b3cc0416">set_visible_horizontal</a> (bool visible_horizontal=true)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets whether <em>tool_item</em> is visible when the toolbar is docked horizontally. <a href="#f98afa328d870e51fe18ac58b3cc0416"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#95438159f6778816285bc27f8737997b">set_visible_vertical</a> (bool visible_vertical=true)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Sets whether <em>tool_item</em> is visible when the toolbar is docked vertically. <a href="#95438159f6778816285bc27f8737997b"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1SignalProxy0.html">Glib::SignalProxy0</a><bool> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#7c9e5cbb15de2a06e6eb3a18a1896c18">signal_create_menu_proxy</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This signal is emitted when the toolbar needs information from about whether the item should appear in the toolbar overflow menu. <a href="#7c9e5cbb15de2a06e6eb3a18a1896c18"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1SignalProxy3.html">Glib::SignalProxy3</a>< bool,<br>
<a class="el" href="classGtk_1_1Tooltips.html">Tooltips</a>*, const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>&,<br>
const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#3bc4e262d1e5b1ebd13d01c313406fb8">signal_set_tooltip</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This signal is emitted when the toolitem's tooltip changes. <a href="#3bc4e262d1e5b1ebd13d01c313406fb8"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1SignalProxy0.html">Glib::SignalProxy0</a><void> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#749ac6895c5c9672f9dd73b11d641ab0">signal_toolbar_reconfigured</a> ()</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">This signal is emitted when some property of the toolbar that the item is a child of changes. <a href="#749ac6895c5c9672f9dd73b11d641ab0"></a><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#197bc704bab7cc60043e856b845933e5">ToolItem</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#193dc6c909e52f68fdbe5b15ae14d2d2">~ToolItem</a> ()</td></tr>
<tr><td colspan="2"><br><h2>Protected Member Functions</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#7f555869e1f43639d57ca601249ffbc8">on_create_menu_proxy</a> ()</td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#3ec8af910b70da65f34fc3705909315a">on_toolbar_reconfigured</a> ()</td></tr>
<tr><td colspan="2"><br><h2>Related Functions</h2></td></tr>
<tr><td colspan="2">(Note that these are not member functions.) <br><br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="el" href="classGtk_1_1ToolItem.html">Gtk::ToolItem</a>* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGtk_1_1ToolItem.html#79a5fe8b7767157c60483c23507ec66f">wrap</a> (GtkToolItem* object, bool take_copy=false)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">A <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/namespaceGlib.html#671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. <a href="#79a5fe8b7767157c60483c23507ec66f"></a><br></td></tr>
</table>
<hr><h2>Constructor & Destructor Documentation</h2>
<a class="anchor" name="193dc6c909e52f68fdbe5b15ae14d2d2"></a><!-- doxytag: member="Gtk::ToolItem::~ToolItem" ref="193dc6c909e52f68fdbe5b15ae14d2d2" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual Gtk::ToolItem::~ToolItem </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"><code> [virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<a class="anchor" name="197bc704bab7cc60043e856b845933e5"></a><!-- doxytag: member="Gtk::ToolItem::ToolItem" ref="197bc704bab7cc60043e856b845933e5" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">Gtk::ToolItem::ToolItem </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<hr><h2>Member Function Documentation</h2>
<a class="anchor" name="e8a9e2fb6948ad508e8014db65a91dee"></a><!-- doxytag: member="Gtk::ToolItem::get_expand" ref="e8a9e2fb6948ad508e8014db65a91dee" args="() const" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::ToolItem::get_expand </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Return value: <code>true</code> if <em>tool_item</em> is allocated extra space.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd><code>true</code> if <em>tool_item</em> is allocated extra space.</dd></dl>
<dl compact><dt><b><a class="el" href="newin2p4s.html#_newin2p4s000267">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
</div>
</div><p>
<a class="anchor" name="5d13e445e3e85d44a94fde8f5ed870a4"></a><!-- doxytag: member="Gtk::ToolItem::get_homogeneous" ref="5d13e445e3e85d44a94fde8f5ed870a4" args="() const" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::ToolItem::get_homogeneous </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Return value: <code>true</code> if the item is the same size as other homogeneous.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd><code>true</code> if the item is the same size as other homogeneous item.s</dd></dl>
<dl compact><dt><b><a class="el" href="newin2p4s.html#_newin2p4s000265">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
</div>
</div><p>
<a class="anchor" name="7bd728c7e51e9fa1e56486bffc72f5e1"></a><!-- doxytag: member="Gtk::ToolItem::get_icon_size" ref="7bd728c7e51e9fa1e56486bffc72f5e1" args="() const" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1IconSize.html">IconSize</a> Gtk::ToolItem::get_icon_size </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Return value: a <a class="el" href="classGtk_1_1IconSize.html">Gtk::IconSize</a> indicating the icon size used for <em>tool_item</em>.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>A <a class="el" href="classGtk_1_1IconSize.html">Gtk::IconSize</a> indicating the icon size used for <em>tool_item</em> </dd></dl>
<dl compact><dt><b><a class="el" href="newin2p4s.html#_newin2p4s000277">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
</div>
</div><p>
<a class="anchor" name="d4cb29d2bd25a1efd5624f6ffaa53f1f"></a><!-- doxytag: member="Gtk::ToolItem::get_is_important" ref="d4cb29d2bd25a1efd5624f6ffaa53f1f" args="() const" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::ToolItem::get_is_important </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Return value: <code>true</code> if <em>tool_item</em> is considered important.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd><code>true</code> if <em>tool_item</em> is considered important.</dd></dl>
<dl compact><dt><b><a class="el" href="newin2p4s.html#_newin2p4s000275">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
</div>
</div><p>
<a class="anchor" name="8c76329297c9623da751b283392b3d47"></a><!-- doxytag: member="Gtk::ToolItem::get_orientation" ref="8c76329297c9623da751b283392b3d47" args="() const" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__gtkmmEnums.html#g84179a467b0ed4f61b4e325eb09b0b1c">Orientation</a> Gtk::ToolItem::get_orientation </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Return value: a <a class="el" href="group__gtkmmEnums.html#g84179a467b0ed4f61b4e325eb09b0b1c">Gtk::Orientation</a> indicating the orientation.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>A <a class="el" href="group__gtkmmEnums.html#g84179a467b0ed4f61b4e325eb09b0b1c">Gtk::Orientation</a> indicating the orientation used for <em>tool_item</em> </dd></dl>
<dl compact><dt><b><a class="el" href="newin2p4s.html#_newin2p4s000278">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
</div>
</div><p>
<a class="anchor" name="edc2aa93828aa0ce8e4dba1861efa40a"></a><!-- doxytag: member="Gtk::ToolItem::get_proxy_menu_item" ref="edc2aa93828aa0ce8e4dba1861efa40a" args="(const Glib::ustring &menu_item_id) const" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classGtk_1_1Widget.html">Widget</a>* Gtk::ToolItem::get_proxy_menu_item </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a> & </td>
<td class="paramname"> <em>menu_item_id</em> </td>
<td> ) </td>
<td width="100%"> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
If <em>menu_item_id</em> matches the string passed to <a class="el" href="classGtk_1_1ToolItem.html#722227699766190dd162d8db5eedf817">set_proxy_menu_item()</a> return the corresponding <a class="el" href="classGtk_1_1MenuItem.html">Gtk::MenuItem</a>.
<p>
Custom subclasses of <a class="el" href="classGtk_1_1ToolItem.html">Gtk::ToolItem</a> should use this function to update their menu item when the <a class="el" href="classGtk_1_1ToolItem.html">Gtk::ToolItem</a> changes. That the <em>menu_item_id</em> <!-- -->s must match ensures that a <a class="el" href="classGtk_1_1ToolItem.html">Gtk::ToolItem</a> will not inadvertently change a menu item that they did not create. <dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>menu_item_id</em> </td><td>A string used to identify the menu item. </td></tr>
</table>
</dl>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>The <a class="el" href="classGtk_1_1MenuItem.html">Gtk::MenuItem</a> passed to <a class="el" href="classGtk_1_1ToolItem.html#722227699766190dd162d8db5eedf817">set_proxy_menu_item()</a>, if the <em>menu_item_id</em> <!-- -->s match.</dd></dl>
<dl compact><dt><b><a class="el" href="newin2p4s.html#_newin2p4s000284">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
</div>
</div><p>
<a class="anchor" name="6477f6a307d97bf1435c6c1bb718131c"></a><!-- doxytag: member="Gtk::ToolItem::get_proxy_menu_item" ref="6477f6a307d97bf1435c6c1bb718131c" args="(const Glib::ustring &menu_item_id)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1Widget.html">Widget</a>* Gtk::ToolItem::get_proxy_menu_item </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a> & </td>
<td class="paramname"> <em>menu_item_id</em> </td>
<td> ) </td>
<td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
If <em>menu_item_id</em> matches the string passed to <a class="el" href="classGtk_1_1ToolItem.html#722227699766190dd162d8db5eedf817">set_proxy_menu_item()</a> return the corresponding <a class="el" href="classGtk_1_1MenuItem.html">Gtk::MenuItem</a>.
<p>
Custom subclasses of <a class="el" href="classGtk_1_1ToolItem.html">Gtk::ToolItem</a> should use this function to update their menu item when the <a class="el" href="classGtk_1_1ToolItem.html">Gtk::ToolItem</a> changes. That the <em>menu_item_id</em> <!-- -->s must match ensures that a <a class="el" href="classGtk_1_1ToolItem.html">Gtk::ToolItem</a> will not inadvertently change a menu item that they did not create. <dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>menu_item_id</em> </td><td>A string used to identify the menu item. </td></tr>
</table>
</dl>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>The <a class="el" href="classGtk_1_1MenuItem.html">Gtk::MenuItem</a> passed to <a class="el" href="classGtk_1_1ToolItem.html#722227699766190dd162d8db5eedf817">set_proxy_menu_item()</a>, if the <em>menu_item_id</em> <!-- -->s match.</dd></dl>
<dl compact><dt><b><a class="el" href="newin2p4s.html#_newin2p4s000283">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
</div>
</div><p>
<a class="anchor" name="1bc0a71ff47b8a2d8055cd17841f7195"></a><!-- doxytag: member="Gtk::ToolItem::get_relief_style" ref="1bc0a71ff47b8a2d8055cd17841f7195" args="() const" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__gtkmmEnums.html#g11df7b40133f3cd29b07bd87c969ff42">ReliefStyle</a> Gtk::ToolItem::get_relief_style </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Return value: a <a class="el" href="group__gtkmmEnums.html#g11df7b40133f3cd29b07bd87c969ff42">Gtk::ReliefStyle</a> indicating the relief style used.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>A <a class="el" href="group__gtkmmEnums.html#g11df7b40133f3cd29b07bd87c969ff42">Gtk::ReliefStyle</a> indicating the relief style used for <em>tool_item</em> .</dd></dl>
<dl compact><dt><b><a class="el" href="newin2p4s.html#_newin2p4s000280">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
</div>
</div><p>
<a class="anchor" name="920bde19e4ba1188bfcb00c104115cbb"></a><!-- doxytag: member="Gtk::ToolItem::get_toolbar_style" ref="920bde19e4ba1188bfcb00c104115cbb" args="() const" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__gtkmmEnums.html#g5aad48684bb486d0aaca8c5aceb64b58">ToolbarStyle</a> Gtk::ToolItem::get_toolbar_style </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Return value: A <a class="el" href="group__gtkmmEnums.html#g5aad48684bb486d0aaca8c5aceb64b58">Gtk::ToolbarStyle</a> indicating the toolbar style used.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>A <a class="el" href="group__gtkmmEnums.html#g5aad48684bb486d0aaca8c5aceb64b58">Gtk::ToolbarStyle</a> indicating the toolbar style used for <em>tool_item</em> .</dd></dl>
<dl compact><dt><b><a class="el" href="newin2p4s.html#_newin2p4s000279">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
</div>
</div><p>
<a class="anchor" name="7d01fdf301e996f10f23ebd96bec7483"></a><!-- doxytag: member="Gtk::ToolItem::get_use_drag_window" ref="7d01fdf301e996f10f23ebd96bec7483" args="() const" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::ToolItem::get_use_drag_window </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Return value: <code>true</code> if <em>tool_item</em> uses a drag window.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd><code>true</code> if <em>tool_item</em> uses a drag window.</dd></dl>
<dl compact><dt><b><a class="el" href="newin2p4s.html#_newin2p4s000270">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
</div>
</div><p>
<a class="anchor" name="52c1c319ffd10109b21c5500e57d5ee5"></a><!-- doxytag: member="Gtk::ToolItem::get_visible_horizontal" ref="52c1c319ffd10109b21c5500e57d5ee5" args="() const" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::ToolItem::get_visible_horizontal </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Return value: <code>true</code> if <em>tool_item</em> is visible on toolbars that are.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd><code>true</code> if <em>tool_item</em> is visible on toolbars that are docked horizontally.</dd></dl>
<dl compact><dt><b><a class="el" href="newin2p4s.html#_newin2p4s000272">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
</div>
</div><p>
<a class="anchor" name="bde84c05902a3e4ba7c6bcf79f7713e1"></a><!-- doxytag: member="Gtk::ToolItem::get_visible_vertical" ref="bde84c05902a3e4ba7c6bcf79f7713e1" args="() const" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gtk::ToolItem::get_visible_vertical </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Return value: Whether <em>tool_item</em> is visible when the toolbar is docked vertically.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>Whether <em>tool_item</em> is visible when the toolbar is docked vertically</dd></dl>
<dl compact><dt><b><a class="el" href="newin2p4s.html#_newin2p4s000274">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
</div>
</div><p>
<a class="anchor" name="14b3df676cf3733d6bd87f5d4cc91c31"></a><!-- doxytag: member="Gtk::ToolItem::gobj" ref="14b3df676cf3733d6bd87f5d4cc91c31" args="() const" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const GtkToolItem* Gtk::ToolItem::gobj </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"> const<code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Provides access to the underlying C GtkObject.
<p>
<p>
Reimplemented from <a class="el" href="classGtk_1_1Bin.html#3028496848aa6547cf2a38f8b26125cf">Gtk::Bin</a>.
<p>
Reimplemented in <a class="el" href="classGtk_1_1MenuToolButton.html#f2e5d909e3ca0e15666cf4b5cc5d7e30">Gtk::MenuToolButton</a>, <a class="el" href="classGtk_1_1RadioToolButton.html#5d13d062f41d851670b64b119b1dbdde">Gtk::RadioToolButton</a>, <a class="el" href="classGtk_1_1SeparatorToolItem.html#506aaf58a13acff809a6acc7774ea55f">Gtk::SeparatorToolItem</a>, <a class="el" href="classGtk_1_1ToggleToolButton.html#ddcc19803d3eb8026302b63c0be86b89">Gtk::ToggleToolButton</a>, and <a class="el" href="classGtk_1_1ToolButton.html#aa8e7fb3b4bf55ed49fb7ccc72527204">Gtk::ToolButton</a>.
</div>
</div><p>
<a class="anchor" name="14a91aa75fdf0d7377288f407f80ef79"></a><!-- doxytag: member="Gtk::ToolItem::gobj" ref="14a91aa75fdf0d7377288f407f80ef79" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GtkToolItem* Gtk::ToolItem::gobj </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"><code> [inline]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Provides access to the underlying C GtkObject.
<p>
<p>
Reimplemented from <a class="el" href="classGtk_1_1Bin.html#6fef1f41c67a588dd33087ea479e0ad1">Gtk::Bin</a>.
<p>
Reimplemented in <a class="el" href="classGtk_1_1MenuToolButton.html#6d5506c273ce86a54862ba3b70758b47">Gtk::MenuToolButton</a>, <a class="el" href="classGtk_1_1RadioToolButton.html#7508ede2d8cda64545c0c1511db8333d">Gtk::RadioToolButton</a>, <a class="el" href="classGtk_1_1SeparatorToolItem.html#f88c8baefe7909b8544bda83705220ee">Gtk::SeparatorToolItem</a>, <a class="el" href="classGtk_1_1ToggleToolButton.html#9826ae502d32b3f6ef07972172bc1296">Gtk::ToggleToolButton</a>, and <a class="el" href="classGtk_1_1ToolButton.html#451fe61a9536f6eb5e55e70ba79eaeea">Gtk::ToolButton</a>.
</div>
</div><p>
<a class="anchor" name="7f555869e1f43639d57ca601249ffbc8"></a><!-- doxytag: member="Gtk::ToolItem::on_create_menu_proxy" ref="7f555869e1f43639d57ca601249ffbc8" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual bool Gtk::ToolItem::on_create_menu_proxy </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<a class="anchor" name="3ec8af910b70da65f34fc3705909315a"></a><!-- doxytag: member="Gtk::ToolItem::on_toolbar_reconfigured" ref="3ec8af910b70da65f34fc3705909315a" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">virtual void Gtk::ToolItem::on_toolbar_reconfigured </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"><code> [protected, virtual]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
</div>
</div><p>
<a class="anchor" name="a9ddcfc920b41cfa50f53b0f2573854d"></a><!-- doxytag: member="Gtk::ToolItem::property_is_important" ref="a9ddcfc920b41cfa50f53b0f2573854d" args="() const" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><bool> Gtk::ToolItem::property_is_important </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Whether the toolbar item is considered important.
<p>
When TRUE<p>
You rarely need to use properties because there are get_ and set_ methods for almost all of them. <dl class="return" compact><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>
</div>
</div><p>
<a class="anchor" name="1b6aa33cc3c06289f30c265af39c58c8"></a><!-- doxytag: member="Gtk::ToolItem::property_is_important" ref="1b6aa33cc3c06289f30c265af39c58c8" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a><bool> Gtk::ToolItem::property_is_important </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Whether the toolbar item is considered important.
<p>
When TRUE<p>
You rarely need to use properties because there are get_ and set_ methods for almost all of them. <dl class="return" compact><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>
</div>
</div><p>
<a class="anchor" name="8c4fc55f6e351bac02be332c108851dc"></a><!-- doxytag: member="Gtk::ToolItem::property_visible_horizontal" ref="8c4fc55f6e351bac02be332c108851dc" args="() const" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><bool> Gtk::ToolItem::property_visible_horizontal </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Whether the toolbar item is visible when the toolbar is in a horizontal orientation.
<p>
You rarely need to use properties because there are get_ and set_ methods for almost all of them. <dl class="return" compact><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>
</div>
</div><p>
<a class="anchor" name="d99a7a41073ddae0cf4bae8be86d22bf"></a><!-- doxytag: member="Gtk::ToolItem::property_visible_horizontal" ref="d99a7a41073ddae0cf4bae8be86d22bf" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a><bool> Gtk::ToolItem::property_visible_horizontal </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Whether the toolbar item is visible when the toolbar is in a horizontal orientation.
<p>
You rarely need to use properties because there are get_ and set_ methods for almost all of them. <dl class="return" compact><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>
</div>
</div><p>
<a class="anchor" name="5a5591d526382a738dbf9eb17a0ad1a4"></a><!-- doxytag: member="Gtk::ToolItem::property_visible_vertical" ref="5a5591d526382a738dbf9eb17a0ad1a4" args="() const" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><bool> Gtk::ToolItem::property_visible_vertical </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Whether the toolbar item is visible when the toolbar is in a vertical orientation.
<p>
You rarely need to use properties because there are get_ and set_ methods for almost all of them. <dl class="return" compact><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>
</div>
</div><p>
<a class="anchor" name="5eff71c790ea507fe09306f13f86c577"></a><!-- doxytag: member="Gtk::ToolItem::property_visible_vertical" ref="5eff71c790ea507fe09306f13f86c577" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1PropertyProxy.html">Glib::PropertyProxy</a><bool> Gtk::ToolItem::property_visible_vertical </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Whether the toolbar item is visible when the toolbar is in a vertical orientation.
<p>
You rarely need to use properties because there are get_ and set_ methods for almost all of them. <dl class="return" compact><dt><b>Returns:</b></dt><dd>A PropertyProxy that allows you to get or set the property of the value, or receive notification when the value of the property changes. </dd></dl>
</div>
</div><p>
<a class="anchor" name="47a4077527ad4fa5d3da33ca60892800"></a><!-- doxytag: member="Gtk::ToolItem::rebuild_menu" ref="47a4077527ad4fa5d3da33ca60892800" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::ToolItem::rebuild_menu </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Calling this function signals to the toolbar that the overflow menu item for <em>tool_item</em> has changed.
<p>
If the overflow menu is visible when this function it called, the menu will be rebuilt.<p>
The function must be called when the tool item changes what it will do in response to the "create_menu_proxy" signal.<p>
<dl compact><dt><b><a class="el" href="newin2p6s.html#_newin2p6s000152">Since gtkmm 2.6:</a></b></dt><dd></dd></dl>
</div>
</div><p>
<a class="anchor" name="6a655de3e5929bc6f4f9a8e27882bdda"></a><!-- doxytag: member="Gtk::ToolItem::retrieve_proxy_menu_item" ref="6a655de3e5929bc6f4f9a8e27882bdda" args="() const" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">const <a class="el" href="classGtk_1_1Widget.html">Widget</a>* Gtk::ToolItem::retrieve_proxy_menu_item </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"> const</td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Return value: The <a class="el" href="classGtk_1_1MenuItem.html">Gtk::MenuItem</a> that is going to appear in the.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>The <a class="el" href="classGtk_1_1MenuItem.html">Gtk::MenuItem</a> that is going to appear in the overflow menu for <em>tool_item</em> .</dd></dl>
<dl compact><dt><b><a class="el" href="newin2p4s.html#_newin2p4s000282">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
</div>
</div><p>
<a class="anchor" name="5486d9d0bd8a4cbb4345aed9a99a50bc"></a><!-- doxytag: member="Gtk::ToolItem::retrieve_proxy_menu_item" ref="5486d9d0bd8a4cbb4345aed9a99a50bc" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1Widget.html">Widget</a>* Gtk::ToolItem::retrieve_proxy_menu_item </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Return value: The <a class="el" href="classGtk_1_1MenuItem.html">Gtk::MenuItem</a> that is going to appear in the.
<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>The <a class="el" href="classGtk_1_1MenuItem.html">Gtk::MenuItem</a> that is going to appear in the overflow menu for <em>tool_item</em> .</dd></dl>
<dl compact><dt><b><a class="el" href="newin2p4s.html#_newin2p4s000281">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
</div>
</div><p>
<a class="anchor" name="1c18c67797b1e635b0f8b7e55b2fdcea"></a><!-- doxytag: member="Gtk::ToolItem::set_expand" ref="1c18c67797b1e635b0f8b7e55b2fdcea" args="(bool expand=true)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::ToolItem::set_expand </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"> <em>expand</em> = <code>true</code> </td>
<td> ) </td>
<td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Sets whether <em>tool_item</em> is allocated extra space when there is more room on the toolbar then needed for the items.
<p>
The effect is that the item gets bigger when the toolbar gets bigger and smaller when the toolbar gets smaller.<p>
<dl compact><dt><b><a class="el" href="newin2p4s.html#_newin2p4s000266">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>expand</em> </td><td>Whether <em>tool_item</em> is allocated extra space. </td></tr>
</table>
</dl>
</div>
</div><p>
<a class="anchor" name="64552ea9654a10a45a053a45a8593659"></a><!-- doxytag: member="Gtk::ToolItem::set_homogeneous" ref="64552ea9654a10a45a053a45a8593659" args="(bool homogeneous=true)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::ToolItem::set_homogeneous </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"> <em>homogeneous</em> = <code>true</code> </td>
<td> ) </td>
<td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Sets whether <em>tool_item</em> is to be allocated the same size as other homogeneous items.
<p>
The effect is that all homogeneous items will have the same width as the widest of the items.<p>
<dl compact><dt><b><a class="el" href="newin2p4s.html#_newin2p4s000264">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>homogeneous</em> </td><td>Whether <em>tool_item</em> is the same size as other homogeneous items. </td></tr>
</table>
</dl>
</div>
</div><p>
<a class="anchor" name="a33895835f121fdf68fd02726a626ecf"></a><!-- doxytag: member="Gtk::ToolItem::set_is_important" ref="a33895835f121fdf68fd02726a626ecf" args="(bool is_important=true)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::ToolItem::set_is_important </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"> <em>is_important</em> = <code>true</code> </td>
<td> ) </td>
<td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Sets whether <em>tool_item</em> should be considered important.
<p>
The <a class="el" href="classGtk_1_1ToolButton.html">Gtk::ToolButton</a> class uses this property to determine whether to show or hide its label when the toolbar style is <a class="el" href="group__gtkmmEnums.html#gg5aad48684bb486d0aaca8c5aceb64b5841b6a2ee8ed5bc34393bc453d8cc39c2">Gtk::TOOLBAR_BOTH_HORIZ</a>. The result is that only tool buttons with the "is_important" property set have labels, an effect known as "priority text"<p>
<dl compact><dt><b><a class="el" href="newin2p4s.html#_newin2p4s000276">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>is_important</em> </td><td>Whether the tool item should be considered important. </td></tr>
</table>
</dl>
</div>
</div><p>
<a class="anchor" name="722227699766190dd162d8db5eedf817"></a><!-- doxytag: member="Gtk::ToolItem::set_proxy_menu_item" ref="722227699766190dd162d8db5eedf817" args="(const Glib::ustring &menu_item_id, Widget &menu_item)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::ToolItem::set_proxy_menu_item </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a> & </td>
<td class="paramname"> <em>menu_item_id</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGtk_1_1Widget.html">Widget</a>& </td>
<td class="paramname"> <em>menu_item</em></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Sets the <a class="el" href="classGtk_1_1MenuItem.html">Gtk::MenuItem</a> used in the toolbar overflow menu.
<p>
The <em>menu_item_id</em> is used to identify the caller of this function and should also be used with <a class="el" href="classGtk_1_1ToolItem.html#6477f6a307d97bf1435c6c1bb718131c">get_proxy_menu_item()</a>.<p>
<dl compact><dt><b><a class="el" href="newin2p4s.html#_newin2p4s000285">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>menu_item_id</em> </td><td>A string used to identify <em>menu_item</em> . </td></tr>
<tr><td valign="top"></td><td valign="top"><em>menu_item</em> </td><td>A <a class="el" href="classGtk_1_1MenuItem.html">Gtk::MenuItem</a> to be used in the overflow menu. </td></tr>
</table>
</dl>
</div>
</div><p>
<a class="anchor" name="eabf9f4f654dfedbc40d0b7b9bc3eacc"></a><!-- doxytag: member="Gtk::ToolItem::set_tooltip" ref="eabf9f4f654dfedbc40d0b7b9bc3eacc" args="(Tooltips &tooltips, const Glib::ustring &tip_text, const Glib::ustring &tip_private=Glib::ustring())" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::ToolItem::set_tooltip </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classGtk_1_1Tooltips.html">Tooltips</a>& </td>
<td class="paramname"> <em>tooltips</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a> & </td>
<td class="paramname"> <em>tip_text</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a> & </td>
<td class="paramname"> <em>tip_private</em> = <code><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>()</code></td><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Sets the <a class="el" href="classGtk_1_1Tooltips.html">Gtk::Tooltips</a> object to be used for <em>tool_item</em> , the text to be displayed as tooltip on the item and the private text to be used.
<p>
See <a class="el" href="classGtk_1_1Tooltips.html#0ec8bdbd8e3f0a6b22a12d3c8b74424c">Gtk::Tooltips::set_tip()</a>.<p>
<dl compact><dt><b><a class="el" href="newin2p4s.html#_newin2p4s000268">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
Deprecated: 2.12: Use <a class="el" href="classGtk_1_1ToolItem.html#2f4067d5070b6395a8c6be040fc67364">set_tooltip_text()</a> instead. <dl compact><dt><b><a class="el" href="deprecated.html#_deprecated000037">Deprecated:</a></b></dt><dd>Use <a class="el" href="classGtk_1_1ToolItem.html#2f4067d5070b6395a8c6be040fc67364">set_tooltip_text()</a> or <a class="el" href="classGtk_1_1ToolItem.html#c62a32a9d9a9bf16c4fc4dd1e1c11bbc">set_tooltip_markup()</a> instead </dd></dl>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>tooltips</em> </td><td>The <a class="el" href="classGtk_1_1Tooltips.html">Gtk::Tooltips</a> object to be used. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>tip_text</em> </td><td>Text to be used as tooltip text for <em>tool_item</em> . </td></tr>
<tr><td valign="top"></td><td valign="top"><em>tip_private</em> </td><td>Text to be used as private tooltip text. </td></tr>
</table>
</dl>
</div>
</div><p>
<a class="anchor" name="c62a32a9d9a9bf16c4fc4dd1e1c11bbc"></a><!-- doxytag: member="Gtk::ToolItem::set_tooltip_markup" ref="c62a32a9d9a9bf16c4fc4dd1e1c11bbc" args="(const Glib::ustring &markup)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::ToolItem::set_tooltip_markup </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a> & </td>
<td class="paramname"> <em>markup</em> </td>
<td> ) </td>
<td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Sets the markup text to be displayed as tooltip on the item.
<p>
See <a class="el" href="classGtk_1_1Widget.html#91d2ed29e299f06fdf18c1d6620667fe">Gtk::Widget::set_tooltip_markup()</a>.<p>
<dl compact><dt><b><a class="el" href="newin2p12s.html#_newin2p12s000095">Since gtkmm 2.12:</a></b></dt><dd></dd></dl>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>markup</em> </td><td>Markup text to be used as tooltip for <em>tool_item</em> . </td></tr>
</table>
</dl>
<p>
Reimplemented from <a class="el" href="classGtk_1_1Widget.html#91d2ed29e299f06fdf18c1d6620667fe">Gtk::Widget</a>.
</div>
</div><p>
<a class="anchor" name="2f4067d5070b6395a8c6be040fc67364"></a><!-- doxytag: member="Gtk::ToolItem::set_tooltip_text" ref="2f4067d5070b6395a8c6be040fc67364" args="(const Glib::ustring &text)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::ToolItem::set_tooltip_text </td>
<td>(</td>
<td class="paramtype">const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a> & </td>
<td class="paramname"> <em>text</em> </td>
<td> ) </td>
<td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Sets the text to be displayed as tooltip on the item.
<p>
See <a class="el" href="classGtk_1_1Widget.html#42b509c9f13cee28f3c3cd25192b78ae">Gtk::Widget::set_tooltip_text()</a>.<p>
<dl compact><dt><b><a class="el" href="newin2p12s.html#_newin2p12s000094">Since gtkmm 2.12:</a></b></dt><dd></dd></dl>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>text</em> </td><td>Text to be used as tooltip for <em>tool_item</em> . </td></tr>
</table>
</dl>
<p>
Reimplemented from <a class="el" href="classGtk_1_1Widget.html#42b509c9f13cee28f3c3cd25192b78ae">Gtk::Widget</a>.
</div>
</div><p>
<a class="anchor" name="da08f867c3bb0abd2f8041925782b9cc"></a><!-- doxytag: member="Gtk::ToolItem::set_use_drag_window" ref="da08f867c3bb0abd2f8041925782b9cc" args="(bool use_drag_window=true)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::ToolItem::set_use_drag_window </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"> <em>use_drag_window</em> = <code>true</code> </td>
<td> ) </td>
<td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Sets whether <em>tool_item</em> has a drag window.
<p>
When <code>true</code> the toolitem can be used as a drag source through gtk_drag_source_set(). When <em>tool_item</em> has a drag window it will intercept all events, even those that would otherwise be sent to a child of <em>tool_item</em> .<p>
<dl compact><dt><b><a class="el" href="newin2p4s.html#_newin2p4s000269">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>use_drag_window</em> </td><td>Whether <em>tool_item</em> has a drag window. </td></tr>
</table>
</dl>
</div>
</div><p>
<a class="anchor" name="f98afa328d870e51fe18ac58b3cc0416"></a><!-- doxytag: member="Gtk::ToolItem::set_visible_horizontal" ref="f98afa328d870e51fe18ac58b3cc0416" args="(bool visible_horizontal=true)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::ToolItem::set_visible_horizontal </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"> <em>visible_horizontal</em> = <code>true</code> </td>
<td> ) </td>
<td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Sets whether <em>tool_item</em> is visible when the toolbar is docked horizontally.
<p>
<dl compact><dt><b><a class="el" href="newin2p4s.html#_newin2p4s000271">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>visible_horizontal</em> </td><td>Whether <em>tool_item</em> is visible when in horizontal mode. </td></tr>
</table>
</dl>
</div>
</div><p>
<a class="anchor" name="95438159f6778816285bc27f8737997b"></a><!-- doxytag: member="Gtk::ToolItem::set_visible_vertical" ref="95438159f6778816285bc27f8737997b" args="(bool visible_vertical=true)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gtk::ToolItem::set_visible_vertical </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"> <em>visible_vertical</em> = <code>true</code> </td>
<td> ) </td>
<td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
Sets whether <em>tool_item</em> is visible when the toolbar is docked vertically.
<p>
Some tool items, such as text entries, are too wide to be useful on a vertically docked toolbar. If <em>visible_vertical</em> is <code>false</code> <em>tool_item</em> will not appear on toolbars that are docked vertically.<p>
<dl compact><dt><b><a class="el" href="newin2p4s.html#_newin2p4s000273">Since gtkmm 2.4:</a></b></dt><dd></dd></dl>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>visible_vertical</em> </td><td>Whether <em>tool_item</em> is visible when the toolbar is in vertical mode. </td></tr>
</table>
</dl>
</div>
</div><p>
<a class="anchor" name="7c9e5cbb15de2a06e6eb3a18a1896c18"></a><!-- doxytag: member="Gtk::ToolItem::signal_create_menu_proxy" ref="7c9e5cbb15de2a06e6eb3a18a1896c18" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1SignalProxy0.html">Glib::SignalProxy0</a>< bool > Gtk::ToolItem::signal_create_menu_proxy </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This signal is emitted when the toolbar needs information from about whether the item should appear in the toolbar overflow menu.
<p>
In response the tool item should either <itemizedlist> <listitem> call <a class="el" href="classGtk_1_1ToolItem.html#722227699766190dd162d8db5eedf817">set_proxy_menu_item()</a> with a NULL pointer and return true to indicate that the item should not appear in the overflow menu </listitem> <listitem> call <a class="el" href="classGtk_1_1ToolItem.html#722227699766190dd162d8db5eedf817">set_proxy_menu_item()</a> with a new menu item and return true, or </listitem> <listitem> return false to indicate that the signal was not handled by the item. This means that the item will not appear in the overflow menu unless a later handler installs a menu item. </listitem> </itemizedlist><p>
The toolbar may cache the result of this signal. When the tool item changes how it will respond to this signal it must call <a class="el" href="classGtk_1_1ToolItem.html#47a4077527ad4fa5d3da33ca60892800">rebuild_menu()</a> to invalidate the cache and ensure that the toolbar rebuilds its overflow menu.<p>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>true if the signal was handled, false if not</dd></dl>
<dl class="user" compact><dt><b>Prototype:</b></dt><dd><code>bool on_my_create_menu_proxy()</code> </dd></dl>
</div>
</div><p>
<a class="anchor" name="3bc4e262d1e5b1ebd13d01c313406fb8"></a><!-- doxytag: member="Gtk::ToolItem::signal_set_tooltip" ref="3bc4e262d1e5b1ebd13d01c313406fb8" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1SignalProxy3.html">Glib::SignalProxy3</a><bool,<a class="el" href="classGtk_1_1Tooltips.html">Tooltips</a>*,const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>&,const <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1ustring.html">Glib::ustring</a>&> Gtk::ToolItem::signal_set_tooltip </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This signal is emitted when the toolitem's tooltip changes.
<p>
Application developers can use gtk_tool_item_set_tooltip() to set the item's tooltip. <dl compact><dt><b><a class="el" href="deprecated.html#_deprecated000038">Deprecated:</a></b></dt><dd>: Use the new <a class="el" href="classGtk_1_1Tooltip.html">Gtk::Tooltip</a> API. This signal will now never be emitted.</dd></dl>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>tooltips</em> </td><td>the <a class="el" href="classGtk_1_1Tooltips.html">Tooltips</a> </td></tr>
<tr><td valign="top"></td><td valign="top"><em>tip_text</em> </td><td>the tooltip text </td></tr>
<tr><td valign="top"></td><td valign="top"><em>tip_private</em> </td><td>the tooltip private text </td></tr>
</table>
</dl>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>true if the signal was handled, false if not. </dd></dl>
</div>
</div><p>
<a class="anchor" name="749ac6895c5c9672f9dd73b11d641ab0"></a><!-- doxytag: member="Gtk::ToolItem::signal_toolbar_reconfigured" ref="749ac6895c5c9672f9dd73b11d641ab0" args="()" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/classGlib_1_1SignalProxy0.html">Glib::SignalProxy0</a>< void > Gtk::ToolItem::signal_toolbar_reconfigured </td>
<td>(</td>
<td class="paramname"> </td>
<td> ) </td>
<td width="100%"></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
This signal is emitted when some property of the toolbar that the item is a child of changes.
<p>
For custom subclasses of <a class="el" href="classGtk_1_1ToolItem.html">ToolItem</a>, the default handler of this signal use the functions <itemizedlist> <listitem><a class="el" href="classGtk_1_1Toolbar.html#a011c0bad1f9b38ecdae3fc40f99a986">Toolbar::get_orientation()</a></listitem> <listitem><a class="el" href="classGtk_1_1Widget.html#3a3c08d5fcb8a134fff5e3f3a11f4f7f">Toolbar::get_style()</a></listitem> <listitem><a class="el" href="classGtk_1_1Toolbar.html#72a37f0fcb1c3a4203f96bc2af9572a9">Toolbar::get_icon_size()</a></listitem> <listitem><a class="el" href="classGtk_1_1Toolbar.html#e6e8dedd4fb40f1b47023e1bba938d70">Toolbar::get_relief_style()</a></listitem> </itemizedlist> to find out what the toolbar should look like and change themselves accordingly.<p>
<dl class="user" compact><dt><b>Prototype:</b></dt><dd><code>void on_my_toolbar_reconfigured()</code> </dd></dl>
</div>
</div><p>
<hr><h2>Friends And Related Function Documentation</h2>
<a class="anchor" name="79a5fe8b7767157c60483c23507ec66f"></a><!-- doxytag: member="Gtk::ToolItem::wrap" ref="79a5fe8b7767157c60483c23507ec66f" args="(GtkToolItem *object, bool take_copy=false)" -->
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGtk_1_1ToolItem.html">Gtk::ToolItem</a>* wrap </td>
<td>(</td>
<td class="paramtype">GtkToolItem * </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><td> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td><td width="100%"><code> [related]</code></td>
</tr>
</table>
</div>
<div class="memdoc">
<p>
A <a class="elRef" doxygen="glibmm_doxygen_tags:../../../../glibmm-2.4/docs/reference/html/" href="../../../../glibmm-2.4/docs/reference/html/namespaceGlib.html#671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object.
<p>
<dl compact><dt><b>Parameters:</b></dt><dd>
<table border="0" cellspacing="2" cellpadding="0">
<tr><td valign="top"></td><td valign="top"><em>object</em> </td><td>The C instance. </td></tr>
<tr><td valign="top"></td><td valign="top"><em>take_copy</em> </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>
</dl>
<dl class="return" compact><dt><b>Returns:</b></dt><dd>A C++ instance that wraps this C instance. </dd></dl>
</div>
</div><p>
<hr>The documentation for this class was generated from the following file:<ul>
<li><a class="el" href="toolitem_8h.html">toolitem.h</a></ul>
</div>
<!-- end main content -->
<hr><address><small>
Generated for gtkmm 2.4 by <a href="http://www.doxygen.org/index.html">
Doxygen</a> 1.5.1 © 1997-2001</small></address>
</body>
</html>
|