1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061
|
<!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.7"/>
<title>glibmm: Gio::Settings 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 style="padding-left: 0.5em;">
<div id="projectname">glibmm
 <span id="projectnumber">2.42.0</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.7 -->
<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>
<li><a href="examples.html"><span>Examples</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="namespaceGio.html">Gio</a></li><li class="navelem"><a class="el" href="classGio_1_1Settings.html">Settings</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-methods">Protected Member Functions</a> |
<a href="#related">Related Functions</a> |
<a href="classGio_1_1Settings-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">Gio::Settings Class Reference</div> </div>
</div><!--header-->
<div class="contents">
<p>A high-level API for application settings.
<a href="classGio_1_1Settings.html#details">More...</a></p>
<p><code>#include <giomm/settings.h></code></p>
<div class="dynheader">
Inheritance diagram for Gio::Settings:</div>
<div class="dyncontent">
<div class="center"><img src="classGio_1_1Settings__inherit__graph.png" border="0" usemap="#Gio_1_1Settings_inherit__map" alt="Inheritance graph"/></div>
<map name="Gio_1_1Settings_inherit__map" id="Gio_1_1Settings_inherit__map">
<area shape="rect" id="node2" href="classGlib_1_1Object.html" title="Glib::Object" alt="" coords="21,155,115,181"/><area shape="rect" id="node3" href="classGlib_1_1ObjectBase.html" title="Glib::ObjectBase is a common base class for Objects and Interfaces. " alt="" coords="5,80,131,107"/><area shape="rect" id="node4" doxygen="/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1trackable.html" title="sigc::trackable" alt="" coords="11,5,125,32"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<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:a4c89c4537e05922457cf09f279d6fcab"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a4c89c4537e05922457cf09f279d6fcab">~Settings</a> ()</td></tr>
<tr class="separator:a4c89c4537e05922457cf09f279d6fcab"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1350e8f1b8a2f0f02c0e00d0cd7077d0"><td class="memItemLeft" align="right" valign="top">GSettings* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a1350e8f1b8a2f0f02c0e00d0cd7077d0">gobj</a> ()</td></tr>
<tr class="memdesc:a1350e8f1b8a2f0f02c0e00d0cd7077d0"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#a1350e8f1b8a2f0f02c0e00d0cd7077d0">More...</a><br /></td></tr>
<tr class="separator:a1350e8f1b8a2f0f02c0e00d0cd7077d0"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3c1af502c3c7a372b07987c4d8e320c5"><td class="memItemLeft" align="right" valign="top">const GSettings* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a3c1af502c3c7a372b07987c4d8e320c5">gobj</a> () const </td></tr>
<tr class="memdesc:a3c1af502c3c7a372b07987c4d8e320c5"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#a3c1af502c3c7a372b07987c4d8e320c5">More...</a><br /></td></tr>
<tr class="separator:a3c1af502c3c7a372b07987c4d8e320c5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ade0eeed443f1dfbc4b649bb294e445f6"><td class="memItemLeft" align="right" valign="top">GSettings* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#ade0eeed443f1dfbc4b649bb294e445f6">gobj_copy</a> ()</td></tr>
<tr class="memdesc:ade0eeed443f1dfbc4b649bb294e445f6"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. <a href="#ade0eeed443f1dfbc4b649bb294e445f6">More...</a><br /></td></tr>
<tr class="separator:ade0eeed443f1dfbc4b649bb294e445f6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3b98d9d71ac41b70f09caf6cb4341183"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a3b98d9d71ac41b70f09caf6cb4341183">set_value</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key, const <a class="el" href="classGlib_1_1VariantBase.html">Glib::VariantBase</a>& value)</td></tr>
<tr class="memdesc:a3b98d9d71ac41b70f09caf6cb4341183"><td class="mdescLeft"> </td><td class="mdescRight">Sets <em>key</em> in <em>settings</em> to <em>value</em>. <a href="#a3b98d9d71ac41b70f09caf6cb4341183">More...</a><br /></td></tr>
<tr class="separator:a3b98d9d71ac41b70f09caf6cb4341183"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac36cd4d128d4af6c0aac34572f4d0930"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#ac36cd4d128d4af6c0aac34572f4d0930">get_value</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key, <a class="el" href="classGlib_1_1VariantBase.html">Glib::VariantBase</a>& value) const </td></tr>
<tr class="memdesc:ac36cd4d128d4af6c0aac34572f4d0930"><td class="mdescLeft"> </td><td class="mdescRight">Gets the value that is stored in the settings for a <em>key</em>. <a href="#ac36cd4d128d4af6c0aac34572f4d0930">More...</a><br /></td></tr>
<tr class="separator:ac36cd4d128d4af6c0aac34572f4d0930"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7e5a08b2d224689d009e17066386e231"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a7e5a08b2d224689d009e17066386e231">get_user_value</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key, <a class="el" href="classGlib_1_1VariantBase.html">Glib::VariantBase</a>& value) const </td></tr>
<tr class="memdesc:a7e5a08b2d224689d009e17066386e231"><td class="mdescLeft"> </td><td class="mdescRight">Checks the "user value" of a <em>key</em>, if there is one. <a href="#a7e5a08b2d224689d009e17066386e231">More...</a><br /></td></tr>
<tr class="separator:a7e5a08b2d224689d009e17066386e231"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af3c0e321d54534eb9b4d376fd4093fa5"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#af3c0e321d54534eb9b4d376fd4093fa5">get_default_value</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key, <a class="el" href="classGlib_1_1VariantBase.html">Glib::VariantBase</a>& value) const </td></tr>
<tr class="memdesc:af3c0e321d54534eb9b4d376fd4093fa5"><td class="mdescLeft"> </td><td class="mdescRight">Gets the "default value" of a key. <a href="#af3c0e321d54534eb9b4d376fd4093fa5">More...</a><br /></td></tr>
<tr class="separator:af3c0e321d54534eb9b4d376fd4093fa5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1f980e517365e5aa4520e982f5e11b27"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a1f980e517365e5aa4520e982f5e11b27">get_int</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key) const </td></tr>
<tr class="memdesc:a1f980e517365e5aa4520e982f5e11b27"><td class="mdescLeft"> </td><td class="mdescRight">Gets the value that is stored at <em>key</em> in <em>settings</em>. <a href="#a1f980e517365e5aa4520e982f5e11b27">More...</a><br /></td></tr>
<tr class="separator:a1f980e517365e5aa4520e982f5e11b27"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7b252643c8ce35c7892cb0b831d67046"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a7b252643c8ce35c7892cb0b831d67046">set_int</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key, int value)</td></tr>
<tr class="memdesc:a7b252643c8ce35c7892cb0b831d67046"><td class="mdescLeft"> </td><td class="mdescRight">Sets <em>key</em> in <em>settings</em> to <em>value</em>. <a href="#a7b252643c8ce35c7892cb0b831d67046">More...</a><br /></td></tr>
<tr class="separator:a7b252643c8ce35c7892cb0b831d67046"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:addf324dee920be4f16220795c3ee235f"><td class="memItemLeft" align="right" valign="top">guint </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#addf324dee920be4f16220795c3ee235f">get_uint</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key) const </td></tr>
<tr class="memdesc:addf324dee920be4f16220795c3ee235f"><td class="mdescLeft"> </td><td class="mdescRight">Gets the value that is stored at <em>key</em> in <em>settings</em>. <a href="#addf324dee920be4f16220795c3ee235f">More...</a><br /></td></tr>
<tr class="separator:addf324dee920be4f16220795c3ee235f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a10284d1e3636cc50aece0268ac18be87"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a10284d1e3636cc50aece0268ac18be87">set_uiint</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key, guint value)</td></tr>
<tr class="memdesc:a10284d1e3636cc50aece0268ac18be87"><td class="mdescLeft"> </td><td class="mdescRight">Sets <em>key</em> in <em>settings</em> to <em>value</em>. <a href="#a10284d1e3636cc50aece0268ac18be87">More...</a><br /></td></tr>
<tr class="separator:a10284d1e3636cc50aece0268ac18be87"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0e00e5ad1bf22709184cb576e4b933a7"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a0e00e5ad1bf22709184cb576e4b933a7">get_boolean</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key) const </td></tr>
<tr class="memdesc:a0e00e5ad1bf22709184cb576e4b933a7"><td class="mdescLeft"> </td><td class="mdescRight">Gets the value that is stored at <em>key</em> in <em>settings</em>. <a href="#a0e00e5ad1bf22709184cb576e4b933a7">More...</a><br /></td></tr>
<tr class="separator:a0e00e5ad1bf22709184cb576e4b933a7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a08d737b902c907b692894ab577c4142e"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a08d737b902c907b692894ab577c4142e">set_boolean</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key, bool value)</td></tr>
<tr class="memdesc:a08d737b902c907b692894ab577c4142e"><td class="mdescLeft"> </td><td class="mdescRight">Sets <em>key</em> in <em>settings</em> to <em>value</em>. <a href="#a08d737b902c907b692894ab577c4142e">More...</a><br /></td></tr>
<tr class="separator:a08d737b902c907b692894ab577c4142e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a52bda84f1cb85f2efab6b82c72b41b7f"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a52bda84f1cb85f2efab6b82c72b41b7f">get_string</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key) const </td></tr>
<tr class="memdesc:a52bda84f1cb85f2efab6b82c72b41b7f"><td class="mdescLeft"> </td><td class="mdescRight">Gets the value that is stored at <em>key</em> in <em>settings</em>. <a href="#a52bda84f1cb85f2efab6b82c72b41b7f">More...</a><br /></td></tr>
<tr class="separator:a52bda84f1cb85f2efab6b82c72b41b7f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad1b4617d76cc9166e68bc849d22c5677"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#ad1b4617d76cc9166e68bc849d22c5677">set_string</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key, const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& value)</td></tr>
<tr class="memdesc:ad1b4617d76cc9166e68bc849d22c5677"><td class="mdescLeft"> </td><td class="mdescRight">Sets <em>key</em> in <em>settings</em> to <em>value</em>. <a href="#ad1b4617d76cc9166e68bc849d22c5677">More...</a><br /></td></tr>
<tr class="separator:ad1b4617d76cc9166e68bc849d22c5677"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac5055dc109007beb12256ca312a0c356"><td class="memItemLeft" align="right" valign="top">double </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#ac5055dc109007beb12256ca312a0c356">get_double</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key) const </td></tr>
<tr class="memdesc:ac5055dc109007beb12256ca312a0c356"><td class="mdescLeft"> </td><td class="mdescRight">Gets the value that is stored at <em>key</em> in <em>settings</em>. <a href="#ac5055dc109007beb12256ca312a0c356">More...</a><br /></td></tr>
<tr class="separator:ac5055dc109007beb12256ca312a0c356"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a81b1bebc7cbf6518aa13ab00bf9966d5"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a81b1bebc7cbf6518aa13ab00bf9966d5">set_double</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key, double value)</td></tr>
<tr class="memdesc:a81b1bebc7cbf6518aa13ab00bf9966d5"><td class="mdescLeft"> </td><td class="mdescRight">Sets <em>key</em> in <em>settings</em> to <em>value</em>. <a href="#a81b1bebc7cbf6518aa13ab00bf9966d5">More...</a><br /></td></tr>
<tr class="separator:a81b1bebc7cbf6518aa13ab00bf9966d5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae5524c5c368069a6676755c01b968f10"><td class="memItemLeft" align="right" valign="top"><a class="el" href="group__ContHandles.html#ga8e243b697be740f5f7d4b578ae50db41">Glib::StringArrayHandle</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#ae5524c5c368069a6676755c01b968f10">get_string_array</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key) const </td></tr>
<tr class="memdesc:ae5524c5c368069a6676755c01b968f10"><td class="mdescLeft"> </td><td class="mdescRight">A convenience variant of g_settings_get() for string arrays. <a href="#ae5524c5c368069a6676755c01b968f10">More...</a><br /></td></tr>
<tr class="separator:ae5524c5c368069a6676755c01b968f10"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9e6e1bf8334f40cb76999a0678ac1b41"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a9e6e1bf8334f40cb76999a0678ac1b41">set_string_array</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key, const <a class="el" href="group__ContHandles.html#ga8e243b697be740f5f7d4b578ae50db41">Glib::StringArrayHandle</a>& value)</td></tr>
<tr class="memdesc:a9e6e1bf8334f40cb76999a0678ac1b41"><td class="mdescLeft"> </td><td class="mdescRight">Sets <em>key</em> in <em>settings</em> to <em>value</em>. <a href="#a9e6e1bf8334f40cb76999a0678ac1b41">More...</a><br /></td></tr>
<tr class="separator:a9e6e1bf8334f40cb76999a0678ac1b41"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4f6a1558661cba8ceea376fc9f81f52f"><td class="memItemLeft" align="right" valign="top">int </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a4f6a1558661cba8ceea376fc9f81f52f">get_enum</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key) const </td></tr>
<tr class="memdesc:a4f6a1558661cba8ceea376fc9f81f52f"><td class="mdescLeft"> </td><td class="mdescRight">Gets the value that is stored in <em>settings</em> for <em>key</em> and converts it to the enum value that it represents. <a href="#a4f6a1558661cba8ceea376fc9f81f52f">More...</a><br /></td></tr>
<tr class="separator:a4f6a1558661cba8ceea376fc9f81f52f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7fe28dd8bb422f55471d636e6bc5b648"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a7fe28dd8bb422f55471d636e6bc5b648">get_enum</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key, int value)</td></tr>
<tr class="memdesc:a7fe28dd8bb422f55471d636e6bc5b648"><td class="mdescLeft"> </td><td class="mdescRight">Looks up the enumerated type nick for <em>value</em> and writes it to <em>key</em>, within <em>settings</em>. <a href="#a7fe28dd8bb422f55471d636e6bc5b648">More...</a><br /></td></tr>
<tr class="separator:a7fe28dd8bb422f55471d636e6bc5b648"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a679796b7368f679fa28478c6861cdad9"><td class="memItemLeft" align="right" valign="top">guint </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a679796b7368f679fa28478c6861cdad9">get_flags</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key) const </td></tr>
<tr class="memdesc:a679796b7368f679fa28478c6861cdad9"><td class="mdescLeft"> </td><td class="mdescRight">Gets the value that is stored in <em>settings</em> for <em>key</em> and converts it to the flags value that it represents. <a href="#a679796b7368f679fa28478c6861cdad9">More...</a><br /></td></tr>
<tr class="separator:a679796b7368f679fa28478c6861cdad9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a049877419a2d25a282ebbfd013bfea79"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a049877419a2d25a282ebbfd013bfea79">get_flags</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key, guint value)</td></tr>
<tr class="memdesc:a049877419a2d25a282ebbfd013bfea79"><td class="mdescLeft"> </td><td class="mdescRight">Looks up the flags type nicks for the bits specified by <em>value</em>, puts them in an array of strings and writes the array to <em>key</em>, within <em>settings</em>. <a href="#a049877419a2d25a282ebbfd013bfea79">More...</a><br /></td></tr>
<tr class="separator:a049877419a2d25a282ebbfd013bfea79"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a98cfd433996d89d031108ca92e4d43d8"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Settings.html">Settings</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a98cfd433996d89d031108ca92e4d43d8">get_child</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& name)</td></tr>
<tr class="memdesc:a98cfd433996d89d031108ca92e4d43d8"><td class="mdescLeft"> </td><td class="mdescRight">Creates a child settings object which has a base path of <code>base-path/ @a name</code>, where <code>base-path</code> is the base path of <em>settings</em>. <a href="#a98cfd433996d89d031108ca92e4d43d8">More...</a><br /></td></tr>
<tr class="separator:a98cfd433996d89d031108ca92e4d43d8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab5afa45ac5edd6ee5c3d55325c9984a9"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< const <a class="el" href="classGio_1_1Settings.html">Settings</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#ab5afa45ac5edd6ee5c3d55325c9984a9">get_child</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& name) const </td></tr>
<tr class="memdesc:ab5afa45ac5edd6ee5c3d55325c9984a9"><td class="mdescLeft"> </td><td class="mdescRight">Creates a child settings object which has a base path of <code>base-path/ @a name</code>, where <code>base-path</code> is the base path of <em>settings</em>. <a href="#ab5afa45ac5edd6ee5c3d55325c9984a9">More...</a><br /></td></tr>
<tr class="separator:ab5afa45ac5edd6ee5c3d55325c9984a9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a33a266c5d291000943cae9dda5cf9884"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a33a266c5d291000943cae9dda5cf9884">is_writable</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& name) const </td></tr>
<tr class="memdesc:a33a266c5d291000943cae9dda5cf9884"><td class="mdescLeft"> </td><td class="mdescRight">Finds out if a key can be written or not. <a href="#a33a266c5d291000943cae9dda5cf9884">More...</a><br /></td></tr>
<tr class="separator:a33a266c5d291000943cae9dda5cf9884"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a33b026961c111c7cb811dd8886bd10aa"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a33b026961c111c7cb811dd8886bd10aa">delay</a> ()</td></tr>
<tr class="memdesc:a33b026961c111c7cb811dd8886bd10aa"><td class="mdescLeft"> </td><td class="mdescRight">Changes the <a class="el" href="classGio_1_1Settings.html" title="A high-level API for application settings. ">Settings</a> object into 'delay-apply' mode. <a href="#a33b026961c111c7cb811dd8886bd10aa">More...</a><br /></td></tr>
<tr class="separator:a33b026961c111c7cb811dd8886bd10aa"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae1309ff09c69e278fbb9869219c3ac03"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#ae1309ff09c69e278fbb9869219c3ac03">apply</a> ()</td></tr>
<tr class="memdesc:ae1309ff09c69e278fbb9869219c3ac03"><td class="mdescLeft"> </td><td class="mdescRight">Applies any changes that have been made to the settings. <a href="#ae1309ff09c69e278fbb9869219c3ac03">More...</a><br /></td></tr>
<tr class="separator:ae1309ff09c69e278fbb9869219c3ac03"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac11529acbf1dd553e5f3ebc5c0125ecd"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#ac11529acbf1dd553e5f3ebc5c0125ecd">revert</a> ()</td></tr>
<tr class="memdesc:ac11529acbf1dd553e5f3ebc5c0125ecd"><td class="mdescLeft"> </td><td class="mdescRight">Reverts all non-applied changes to the settings. <a href="#ac11529acbf1dd553e5f3ebc5c0125ecd">More...</a><br /></td></tr>
<tr class="separator:ac11529acbf1dd553e5f3ebc5c0125ecd"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a84b99d6419887e0812f3a58eaece8e88"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a84b99d6419887e0812f3a58eaece8e88">get_has_unapplied</a> () const </td></tr>
<tr class="memdesc:a84b99d6419887e0812f3a58eaece8e88"><td class="mdescLeft"> </td><td class="mdescRight">Returns whether the <a class="el" href="classGio_1_1Settings.html" title="A high-level API for application settings. ">Settings</a> object has any unapplied changes. <a href="#a84b99d6419887e0812f3a58eaece8e88">More...</a><br /></td></tr>
<tr class="separator:a84b99d6419887e0812f3a58eaece8e88"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8fe9b5174d02d36b6b8fdacb0b10a049"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a8fe9b5174d02d36b6b8fdacb0b10a049">reset</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key)</td></tr>
<tr class="memdesc:a8fe9b5174d02d36b6b8fdacb0b10a049"><td class="mdescLeft"> </td><td class="mdescRight">Resets <em>key</em> to its default value. <a href="#a8fe9b5174d02d36b6b8fdacb0b10a049">More...</a><br /></td></tr>
<tr class="separator:a8fe9b5174d02d36b6b8fdacb0b10a049"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a482a46eb92894e73e6678ba48d0e8c15"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>< <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a482a46eb92894e73e6678ba48d0e8c15">list_children</a> () const </td></tr>
<tr class="memdesc:a482a46eb92894e73e6678ba48d0e8c15"><td class="mdescLeft"> </td><td class="mdescRight">Gets the list of children on <em>settings</em>. <a href="#a482a46eb92894e73e6678ba48d0e8c15">More...</a><br /></td></tr>
<tr class="separator:a482a46eb92894e73e6678ba48d0e8c15"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a28d9dc219f86a7372e9a2dd7638daa9b"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>< <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a28d9dc219f86a7372e9a2dd7638daa9b">list_keys</a> () const </td></tr>
<tr class="memdesc:a28d9dc219f86a7372e9a2dd7638daa9b"><td class="mdescLeft"> </td><td class="mdescRight">Introspects the list of keys on <em>settings</em>. <a href="#a28d9dc219f86a7372e9a2dd7638daa9b">More...</a><br /></td></tr>
<tr class="separator:a28d9dc219f86a7372e9a2dd7638daa9b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1b2ab194e7cbf982622eb416a1b68047"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a1b2ab194e7cbf982622eb416a1b68047">range_check</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key, const <a class="el" href="classGlib_1_1VariantBase.html">Glib::VariantBase</a>& value) const </td></tr>
<tr class="memdesc:a1b2ab194e7cbf982622eb416a1b68047"><td class="mdescLeft"> </td><td class="mdescRight">Checks if the given <em>value</em> is of the correct type and within the permitted range for <em>key</em>. <a href="#a1b2ab194e7cbf982622eb416a1b68047">More...</a><br /></td></tr>
<tr class="separator:a1b2ab194e7cbf982622eb416a1b68047"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a39d962b3e73ec10608a3a744cb4255b4"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a39d962b3e73ec10608a3a744cb4255b4">bind</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key, <a class="el" href="classGlib_1_1ObjectBase.html">Glib::ObjectBase</a>* object, const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& property, <a class="el" href="group__giommEnums.html#gab41e4379084ff04d75104143d99ecf61">SettingsBindFlags</a> flags=<a class="el" href="namespaceGio.html#gab41e4379084ff04d75104143d99ecf61a3ce16849b0de4e3ee431fdc4b9e22743">SETTINGS_BIND_DEFAULT</a>)</td></tr>
<tr class="memdesc:a39d962b3e73ec10608a3a744cb4255b4"><td class="mdescLeft"> </td><td class="mdescRight">Create a binding between the <em>key</em> in the <em>settings</em> object and the property <em>property</em> of <em>object</em>. <a href="#a39d962b3e73ec10608a3a744cb4255b4">More...</a><br /></td></tr>
<tr class="separator:a39d962b3e73ec10608a3a744cb4255b4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a893453b68172f5ecb6c008d2d642da3f"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a893453b68172f5ecb6c008d2d642da3f">bind</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key, const <a class="el" href="classGlib_1_1PropertyProxy__Base.html">Glib::PropertyProxy_Base</a>& property_proxy, <a class="el" href="group__giommEnums.html#gab41e4379084ff04d75104143d99ecf61">SettingsBindFlags</a> flags=<a class="el" href="namespaceGio.html#gab41e4379084ff04d75104143d99ecf61a3ce16849b0de4e3ee431fdc4b9e22743">SETTINGS_BIND_DEFAULT</a>)</td></tr>
<tr class="separator:a893453b68172f5ecb6c008d2d642da3f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a47c913cd1ce8122d742911fa54896fa7"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a47c913cd1ce8122d742911fa54896fa7">bind_writable</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key, <a class="el" href="classGlib_1_1ObjectBase.html">Glib::ObjectBase</a>* object, const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& property, bool inverted=false)</td></tr>
<tr class="memdesc:a47c913cd1ce8122d742911fa54896fa7"><td class="mdescLeft"> </td><td class="mdescRight">Create a binding between the writability of <em>key</em> in the <em>settings</em> object and the property <em>property</em> of <em>object</em>. <a href="#a47c913cd1ce8122d742911fa54896fa7">More...</a><br /></td></tr>
<tr class="separator:a47c913cd1ce8122d742911fa54896fa7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac0da884631dc04c338287e475a5b93fe"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#ac0da884631dc04c338287e475a5b93fe">bind_writable</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key, const <a class="el" href="classGlib_1_1PropertyProxy__Base.html">Glib::PropertyProxy_Base</a>& property_proxy, bool inverted=false)</td></tr>
<tr class="separator:ac0da884631dc04c338287e475a5b93fe"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a03112726403e4b3b8d45f203d7307d6b"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Action.html">Action</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a03112726403e4b3b8d45f203d7307d6b">create_action</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key)</td></tr>
<tr class="memdesc:a03112726403e4b3b8d45f203d7307d6b"><td class="mdescLeft"> </td><td class="mdescRight">Creates a <a class="el" href="classGio_1_1Action.html" title="Action - An action. ">Action</a> corresponding to a given <a class="el" href="classGio_1_1Settings.html" title="A high-level API for application settings. ">Settings</a> key. <a href="#a03112726403e4b3b8d45f203d7307d6b">More...</a><br /></td></tr>
<tr class="separator:a03112726403e4b3b8d45f203d7307d6b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaa97605482bec03816ec11caa80d54ee"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak" />
< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#aaa97605482bec03816ec11caa80d54ee">property_delay_apply</a> () const </td></tr>
<tr class="memdesc:aaa97605482bec03816ec11caa80d54ee"><td class="mdescLeft"> </td><td class="mdescRight">Whether this settings object is in 'delay-apply' mode. <a href="#aaa97605482bec03816ec11caa80d54ee">More...</a><br /></td></tr>
<tr class="separator:aaa97605482bec03816ec11caa80d54ee"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a98990a4c6063822aa31e5b6798dfcd1b"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak" />
< bool > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a98990a4c6063822aa31e5b6798dfcd1b">property_has_unapplied</a> () const </td></tr>
<tr class="memdesc:a98990a4c6063822aa31e5b6798dfcd1b"><td class="mdescLeft"> </td><td class="mdescRight">TRUE if there are outstanding changes to <a class="el" href="classGio_1_1Settings.html#ae1309ff09c69e278fbb9869219c3ac03" title="Applies any changes that have been made to the settings. ">apply()</a>. <a href="#a98990a4c6063822aa31e5b6798dfcd1b">More...</a><br /></td></tr>
<tr class="separator:a98990a4c6063822aa31e5b6798dfcd1b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2d0ad409118650163e5a921b656cc2ca"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak" />
< <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/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="classGio_1_1Settings.html#a2d0ad409118650163e5a921b656cc2ca">property_path</a> () const </td></tr>
<tr class="memdesc:a2d0ad409118650163e5a921b656cc2ca"><td class="mdescLeft"> </td><td class="mdescRight">The path within the backend where the settings are. <a href="#a2d0ad409118650163e5a921b656cc2ca">More...</a><br /></td></tr>
<tr class="separator:a2d0ad409118650163e5a921b656cc2ca"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2158459609a1be4022003195534dc6c2"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak" />
< <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a2158459609a1be4022003195534dc6c2">property_schema</a> () const </td></tr>
<tr class="memdesc:a2158459609a1be4022003195534dc6c2"><td class="mdescLeft"> </td><td class="mdescRight">The name of the schema for this settings object. <a href="#a2158459609a1be4022003195534dc6c2">More...</a><br /></td></tr>
<tr class="separator:a2158459609a1be4022003195534dc6c2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8ba6fa118331249e8c56cc2169707b93"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a><br class="typebreak" />
< <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a8ba6fa118331249e8c56cc2169707b93">property_schema_id</a> () const </td></tr>
<tr class="memdesc:a8ba6fa118331249e8c56cc2169707b93"><td class="mdescLeft"> </td><td class="mdescRight">The name of the schema for this settings object. <a href="#a8ba6fa118331249e8c56cc2169707b93">More...</a><br /></td></tr>
<tr class="separator:a8ba6fa118331249e8c56cc2169707b93"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aedb2d1200cfc06141c56daf8a6c45456"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1SignalProxy1.html">Glib::SignalProxy1</a>< void, <br class="typebreak" />
const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#aedb2d1200cfc06141c56daf8a6c45456">signal_changed</a> ()</td></tr>
<tr class="separator:aedb2d1200cfc06141c56daf8a6c45456"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae24c1784fc1f2fae4f758ea62bc70c31"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1SignalProxy1.html">Glib::SignalProxy1</a>< bool, guint > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#ae24c1784fc1f2fae4f758ea62bc70c31">signal_writable_change_event</a> ()</td></tr>
<tr class="separator:ae24c1784fc1f2fae4f758ea62bc70c31"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa155c63e6c1c5218e3793f86f9cab0ff"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1SignalProxy1.html">Glib::SignalProxy1</a>< void, <br class="typebreak" />
const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#aa155c63e6c1c5218e3793f86f9cab0ff">signal_writable_changed</a> ()</td></tr>
<tr class="separator:aa155c63e6c1c5218e3793f86f9cab0ff"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classGlib_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGlib_1_1Object')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classGlib_1_1Object.html">Glib::Object</a></td></tr>
<tr class="memitem:a0e6581bcbcc6197cca07df24bb91c492 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#a0e6581bcbcc6197cca07df24bb91c492">get_data</a> (const <a class="el" href="classGlib_1_1QueryQuark.html">QueryQuark</a>& key)</td></tr>
<tr class="separator:a0e6581bcbcc6197cca07df24bb91c492 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afff7a375a862f3f899daaa99710122fa inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#afff7a375a862f3f899daaa99710122fa">set_data</a> (const <a class="el" href="classGlib_1_1Quark.html">Quark</a>& key, void* data)</td></tr>
<tr class="separator:afff7a375a862f3f899daaa99710122fa inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1febe3bae2dd71756e98e523cd33c1b4 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#a1febe3bae2dd71756e98e523cd33c1b4">set_data</a> (const <a class="el" href="classGlib_1_1Quark.html">Quark</a>& key, void* data, <a class="el" href="classGlib_1_1Object.html#a1d8d9f3c19b59eda96c40beca8d520e0">DestroyNotify</a> notify)</td></tr>
<tr class="separator:a1febe3bae2dd71756e98e523cd33c1b4 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aada5b50844bda7ee02bed0ae2a715c00 inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#aada5b50844bda7ee02bed0ae2a715c00">remove_data</a> (const <a class="el" href="classGlib_1_1QueryQuark.html">QueryQuark</a>& quark)</td></tr>
<tr class="separator:aada5b50844bda7ee02bed0ae2a715c00 inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab454f71bd74403b0cc46d3cbbedd6b0e inherit pub_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">void* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#ab454f71bd74403b0cc46d3cbbedd6b0e">steal_data</a> (const <a class="el" href="classGlib_1_1QueryQuark.html">QueryQuark</a>& quark)</td></tr>
<tr class="separator:ab454f71bd74403b0cc46d3cbbedd6b0e inherit pub_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classGlib_1_1ObjectBase"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classGlib_1_1ObjectBase')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td></tr>
<tr class="memitem:aab599d3eec4b4a9ddc95ccdc6100053d inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#aab599d3eec4b4a9ddc95ccdc6100053d">set_property_value</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& property_name, const <a class="el" href="classGlib_1_1ValueBase.html">Glib::ValueBase</a>& value)</td></tr>
<tr class="memdesc:aab599d3eec4b4a9ddc95ccdc6100053d inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">You probably want to use a specific property_*() accessor method instead. <a href="#aab599d3eec4b4a9ddc95ccdc6100053d">More...</a><br /></td></tr>
<tr class="separator:aab599d3eec4b4a9ddc95ccdc6100053d inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5e30750441b92f0246c9d4ece95fc8a0 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a5e30750441b92f0246c9d4ece95fc8a0">get_property_value</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& property_name, <a class="el" href="classGlib_1_1ValueBase.html">Glib::ValueBase</a>& value) const </td></tr>
<tr class="memdesc:a5e30750441b92f0246c9d4ece95fc8a0 inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">You probably want to use a specific property_*() accessor method instead. <a href="#a5e30750441b92f0246c9d4ece95fc8a0">More...</a><br /></td></tr>
<tr class="separator:a5e30750441b92f0246c9d4ece95fc8a0 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad37844f7ea2c0091a22d011e04c48820 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memTemplParams" colspan="2">template<class PropertyType > </td></tr>
<tr class="memitem:ad37844f7ea2c0091a22d011e04c48820 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memTemplItemLeft" align="right" valign="top">void </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#ad37844f7ea2c0091a22d011e04c48820">set_property</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& property_name, const PropertyType& value)</td></tr>
<tr class="memdesc:ad37844f7ea2c0091a22d011e04c48820 inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">You probably want to use a specific property_*() accessor method instead. <a href="#ad37844f7ea2c0091a22d011e04c48820">More...</a><br /></td></tr>
<tr class="separator:ad37844f7ea2c0091a22d011e04c48820 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5f894c9c36ad391fdc85552af67a8530 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memTemplParams" colspan="2">template<class PropertyType > </td></tr>
<tr class="memitem:a5f894c9c36ad391fdc85552af67a8530 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memTemplItemLeft" align="right" valign="top">void </td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a5f894c9c36ad391fdc85552af67a8530">get_property</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& property_name, PropertyType& value) const </td></tr>
<tr class="memdesc:a5f894c9c36ad391fdc85552af67a8530 inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">You probably want to use a specific property_*() accessor method instead. <a href="#a5f894c9c36ad391fdc85552af67a8530">More...</a><br /></td></tr>
<tr class="separator:a5f894c9c36ad391fdc85552af67a8530 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adc6c1e8f094275114d6e2c3ef3a33f98 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#adc6c1e8f094275114d6e2c3ef3a33f98">connect_property_changed</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& property_name, const <a class="elRef" doxygen="/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>< void >& slot)</td></tr>
<tr class="memdesc:adc6c1e8f094275114d6e2c3ef3a33f98 inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">You can use the signal_changed() signal of the property proxy instead, but this is necessary when using the reduced API. <a href="#adc6c1e8f094275114d6e2c3ef3a33f98">More...</a><br /></td></tr>
<tr class="separator:adc6c1e8f094275114d6e2c3ef3a33f98 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a896d7773c00bd2dcd310c861282ee8d1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"><a class="elRef" doxygen="/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/structsigc_1_1connection.html">sigc::connection</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a896d7773c00bd2dcd310c861282ee8d1">connect_property_changed_with_return</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& property_name, const <a class="elRef" doxygen="/opt/gnome/share/doc/libsigc++-2.0/reference/libsigc++-2.0.tag:http://library.gnome.org/devel/libsigc++/unstable/" href="http://library.gnome.org/devel/libsigc++/unstable/classsigc_1_1slot.html">sigc::slot</a>< void >& slot)</td></tr>
<tr class="memdesc:a896d7773c00bd2dcd310c861282ee8d1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">You can use the signal_changed() signal of the property proxy instead, but this is necessary when using the reduced API. <a href="#a896d7773c00bd2dcd310c861282ee8d1">More...</a><br /></td></tr>
<tr class="separator:a896d7773c00bd2dcd310c861282ee8d1 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6e9e13b75f116c20212d318204ce8ea3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a6e9e13b75f116c20212d318204ce8ea3">freeze_notify</a> ()</td></tr>
<tr class="memdesc:a6e9e13b75f116c20212d318204ce8ea3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">Increases the freeze count on object. <a href="#a6e9e13b75f116c20212d318204ce8ea3">More...</a><br /></td></tr>
<tr class="separator:a6e9e13b75f116c20212d318204ce8ea3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1bd8ea7bd8c4084ade6b3c27dddf06a4 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a1bd8ea7bd8c4084ade6b3c27dddf06a4">thaw_notify</a> ()</td></tr>
<tr class="memdesc:a1bd8ea7bd8c4084ade6b3c27dddf06a4 inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">Reverts the effect of a previous call to <a class="el" href="classGlib_1_1ObjectBase.html#a6e9e13b75f116c20212d318204ce8ea3" title="Increases the freeze count on object. ">freeze_notify()</a>. <a href="#a1bd8ea7bd8c4084ade6b3c27dddf06a4">More...</a><br /></td></tr>
<tr class="separator:a1bd8ea7bd8c4084ade6b3c27dddf06a4 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a896a8a5db20043ea82956e3ef4b9c4ae inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a896a8a5db20043ea82956e3ef4b9c4ae">reference</a> () const </td></tr>
<tr class="memdesc:a896a8a5db20043ea82956e3ef4b9c4ae inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">Increment the reference count for this object. <a href="#a896a8a5db20043ea82956e3ef4b9c4ae">More...</a><br /></td></tr>
<tr class="separator:a896a8a5db20043ea82956e3ef4b9c4ae inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3234b8ffb2a35b927e2978c8f3bfbfe3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a3234b8ffb2a35b927e2978c8f3bfbfe3">unreference</a> () const </td></tr>
<tr class="memdesc:a3234b8ffb2a35b927e2978c8f3bfbfe3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">Decrement the reference count for this object. <a href="#a3234b8ffb2a35b927e2978c8f3bfbfe3">More...</a><br /></td></tr>
<tr class="separator:a3234b8ffb2a35b927e2978c8f3bfbfe3 inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4c6efc18be8cb9c56e58fc0bd20fafbe inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">GObject* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a4c6efc18be8cb9c56e58fc0bd20fafbe">gobj</a> ()</td></tr>
<tr class="memdesc:a4c6efc18be8cb9c56e58fc0bd20fafbe inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#a4c6efc18be8cb9c56e58fc0bd20fafbe">More...</a><br /></td></tr>
<tr class="separator:a4c6efc18be8cb9c56e58fc0bd20fafbe inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a778a94181132976bbfb0519793f3b32e inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">const GObject* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a778a94181132976bbfb0519793f3b32e">gobj</a> () const </td></tr>
<tr class="memdesc:a778a94181132976bbfb0519793f3b32e inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">Provides access to the underlying C GObject. <a href="#a778a94181132976bbfb0519793f3b32e">More...</a><br /></td></tr>
<tr class="separator:a778a94181132976bbfb0519793f3b32e inherit pub_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9b2a5eb93102f1849e5419016e22a15f inherit pub_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">GObject* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a9b2a5eb93102f1849e5419016e22a15f">gobj_copy</a> () const </td></tr>
<tr class="memdesc:a9b2a5eb93102f1849e5419016e22a15f inherit pub_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">Give a ref-ed copy to someone. Use for direct struct access. <a href="#a9b2a5eb93102f1849e5419016e22a15f">More...</a><br /></td></tr>
<tr class="separator:a9b2a5eb93102f1849e5419016e22a15f inherit pub_methods_classGlib_1_1ObjectBase"><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:a47e88375019e4cbd035d8fd02d59e93a"><td class="memItemLeft" align="right" valign="top">static GType </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a47e88375019e4cbd035d8fd02d59e93a">get_type</a> ()</td></tr>
<tr class="memdesc:a47e88375019e4cbd035d8fd02d59e93a"><td class="mdescLeft"> </td><td class="mdescRight">Get the GType for this class, for use with the underlying GObject type system. <a href="#a47e88375019e4cbd035d8fd02d59e93a">More...</a><br /></td></tr>
<tr class="separator:a47e88375019e4cbd035d8fd02d59e93a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7a7fcf5a7c18611e224541309841205b"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Settings.html">Settings</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a7a7fcf5a7c18611e224541309841205b">create</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& schema)</td></tr>
<tr class="separator:a7a7fcf5a7c18611e224541309841205b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa985b9447d252fb8d8d1e727e51b0b7b"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Settings.html">Settings</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#aa985b9447d252fb8d8d1e727e51b0b7b">create</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& schema, const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& path)</td></tr>
<tr class="separator:aa985b9447d252fb8d8d1e727e51b0b7b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a78d4be25c912ac1f00028762ab92c409"><td class="memItemLeft" align="right" valign="top">static <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a>< <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a78d4be25c912ac1f00028762ab92c409">list_schemas</a> ()</td></tr>
<tr class="separator:a78d4be25c912ac1f00028762ab92c409"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr class="memitem:a1c549bfe41401ed0fb2eb7059cf8a45b"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a1c549bfe41401ed0fb2eb7059cf8a45b">Settings</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& schema)</td></tr>
<tr class="separator:a1c549bfe41401ed0fb2eb7059cf8a45b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a947930fadf94b1d0a4860eeafc04dd76"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a947930fadf94b1d0a4860eeafc04dd76">Settings</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& schema, const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& path)</td></tr>
<tr class="separator:a947930fadf94b1d0a4860eeafc04dd76"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4e88dd069cb1aab8e39ca1c058e552ce"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a4e88dd069cb1aab8e39ca1c058e552ce">on_changed</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key)</td></tr>
<tr class="memdesc:a4e88dd069cb1aab8e39ca1c058e552ce"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGio_1_1Settings.html#aedb2d1200cfc06141c56daf8a6c45456">signal_changed()</a>. <a href="#a4e88dd069cb1aab8e39ca1c058e552ce">More...</a><br /></td></tr>
<tr class="separator:a4e88dd069cb1aab8e39ca1c058e552ce"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6824e75577a579815cc9eaf64f8b15f9"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a6824e75577a579815cc9eaf64f8b15f9">on_writable_change_event</a> (guint key)</td></tr>
<tr class="memdesc:a6824e75577a579815cc9eaf64f8b15f9"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGio_1_1Settings.html#ae24c1784fc1f2fae4f758ea62bc70c31">signal_writable_change_event()</a>. <a href="#a6824e75577a579815cc9eaf64f8b15f9">More...</a><br /></td></tr>
<tr class="separator:a6824e75577a579815cc9eaf64f8b15f9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2428f5d4bf7c40753fc112412197c5cb"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#a2428f5d4bf7c40753fc112412197c5cb">on_writable_changed</a> (const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& key)</td></tr>
<tr class="memdesc:a2428f5d4bf7c40753fc112412197c5cb"><td class="mdescLeft"> </td><td class="mdescRight">This is a default handler for the signal <a class="el" href="classGio_1_1Settings.html#aa155c63e6c1c5218e3793f86f9cab0ff">signal_writable_changed()</a>. <a href="#a2428f5d4bf7c40753fc112412197c5cb">More...</a><br /></td></tr>
<tr class="separator:a2428f5d4bf7c40753fc112412197c5cb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classGlib_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classGlib_1_1Object')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="classGlib_1_1Object.html">Glib::Object</a></td></tr>
<tr class="memitem:ad43f7c5ad0336e1eb3af622392a112eb inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#ad43f7c5ad0336e1eb3af622392a112eb">Object</a> ()</td></tr>
<tr class="separator:ad43f7c5ad0336e1eb3af622392a112eb inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6d72588496bd7ac03f72420021fb94a5 inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#a6d72588496bd7ac03f72420021fb94a5">Object</a> (const Glib::ConstructParams& construct_params)</td></tr>
<tr class="separator:a6d72588496bd7ac03f72420021fb94a5 inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6f490eeaeb71db673c36799a0f729be5 inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#a6f490eeaeb71db673c36799a0f729be5">Object</a> (GObject* castitem)</td></tr>
<tr class="separator:a6f490eeaeb71db673c36799a0f729be5 inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5ae4319439a3a03d8f803fb5a27f12df inherit pro_methods_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#a5ae4319439a3a03d8f803fb5a27f12df">~Object</a> ()</td></tr>
<tr class="separator:a5ae4319439a3a03d8f803fb5a27f12df inherit pro_methods_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classGlib_1_1ObjectBase"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classGlib_1_1ObjectBase')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="classGlib_1_1ObjectBase.html">Glib::ObjectBase</a></td></tr>
<tr class="memitem:a27d3451d9ca28d6a2f00838d7c56d545 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a27d3451d9ca28d6a2f00838d7c56d545">ObjectBase</a> ()</td></tr>
<tr class="memdesc:a27d3451d9ca28d6a2f00838d7c56d545 inherit pro_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">This default constructor is called implicitly from the constructor of user-derived classes, even if, for instance, Gtk::Button calls a different <a class="el" href="classGlib_1_1ObjectBase.html" title="Glib::ObjectBase is a common base class for Objects and Interfaces. ">ObjectBase</a> constructor. <a href="#a27d3451d9ca28d6a2f00838d7c56d545">More...</a><br /></td></tr>
<tr class="separator:a27d3451d9ca28d6a2f00838d7c56d545 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad4ef18214894c6874579313ab21d1018 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#ad4ef18214894c6874579313ab21d1018">ObjectBase</a> (const char* custom_type_name)</td></tr>
<tr class="memdesc:ad4ef18214894c6874579313ab21d1018 inherit pro_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">A derived constructor always overrides this choice. <a href="#ad4ef18214894c6874579313ab21d1018">More...</a><br /></td></tr>
<tr class="separator:ad4ef18214894c6874579313ab21d1018 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3d59b4d85b0ee72a727e6b2e1b31a2ff inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a3d59b4d85b0ee72a727e6b2e1b31a2ff">ObjectBase</a> (const <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00947.html">std::type_info</a>& custom_type_info)</td></tr>
<tr class="memdesc:a3d59b4d85b0ee72a727e6b2e1b31a2ff inherit pro_methods_classGlib_1_1ObjectBase"><td class="mdescLeft"> </td><td class="mdescRight">This constructor is a special feature to allow creation of derived types on the fly, without having to use g_object_new() manually. <a href="#a3d59b4d85b0ee72a727e6b2e1b31a2ff">More...</a><br /></td></tr>
<tr class="separator:a3d59b4d85b0ee72a727e6b2e1b31a2ff inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a42ac047a06c36c2d9c75f7cffc537dc4 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a42ac047a06c36c2d9c75f7cffc537dc4">~ObjectBase</a> ()=0</td></tr>
<tr class="separator:a42ac047a06c36c2d9c75f7cffc537dc4 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3faafb14c4f0ca60fbf0f5f5c4d549d0 inherit pro_methods_classGlib_1_1ObjectBase"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1ObjectBase.html#a3faafb14c4f0ca60fbf0f5f5c4d549d0">initialize</a> (GObject* castitem)</td></tr>
<tr class="separator:a3faafb14c4f0ca60fbf0f5f5c4d549d0 inherit pro_methods_classGlib_1_1ObjectBase"><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:ae47167a74b09e7410bc6eadea3ba989c"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Settings.html">Gio::Settings</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGio_1_1Settings.html#ae47167a74b09e7410bc6eadea3ba989c">wrap</a> (GSettings* object, bool take_copy=false)</td></tr>
<tr class="memdesc:ae47167a74b09e7410bc6eadea3ba989c"><td class="mdescLeft"> </td><td class="mdescRight">A <a class="el" href="namespaceGlib.html#a671306f4a3a0cae5ab4d7a9d54886592">Glib::wrap()</a> method for this object. <a href="#ae47167a74b09e7410bc6eadea3ba989c">More...</a><br /></td></tr>
<tr class="separator:ae47167a74b09e7410bc6eadea3ba989c"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header related_classGlib_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('related_classGlib_1_1Object')"><img src="closed.png" alt="-"/> Related Functions inherited from <a class="el" href="classGlib_1_1Object.html">Glib::Object</a></td></tr>
<tr class="memitem:ae4dea9a8dc611d6e4400a5b6a3cb4e7f inherit related_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGlib_1_1Object.html">Glib::Object</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#ae4dea9a8dc611d6e4400a5b6a3cb4e7f">wrap</a> (GObject* object, bool take_copy=false)</td></tr>
<tr class="separator:ae4dea9a8dc611d6e4400a5b6a3cb4e7f inherit related_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a>
Additional Inherited Members</h2></td></tr>
<tr class="inherit_header pub_types_classGlib_1_1Object"><td colspan="2" onclick="javascript:toggleInherit('pub_types_classGlib_1_1Object')"><img src="closed.png" alt="-"/> Public Types inherited from <a class="el" href="classGlib_1_1Object.html">Glib::Object</a></td></tr>
<tr class="memitem:a1d8d9f3c19b59eda96c40beca8d520e0 inherit pub_types_classGlib_1_1Object"><td class="memItemLeft" align="right" valign="top">typedef void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="classGlib_1_1Object.html#a1d8d9f3c19b59eda96c40beca8d520e0">DestroyNotify</a> )(gpointer data)</td></tr>
<tr class="separator:a1d8d9f3c19b59eda96c40beca8d520e0 inherit pub_types_classGlib_1_1Object"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>A high-level API for application settings. </p>
<p>The <a class="el" href="classGio_1_1Settings.html" title="A high-level API for application settings. ">Settings</a> class provides a convenient API for storing and retrieving application settings.</p>
<dl class="since_2_28"><dt><b><a class="el" href="since_2_28.html#_since_2_28000179">Since glibmm 2.28:</a></b></dt><dd></dd></dl>
</div><h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a class="anchor" id="a4c89c4537e05922457cf09f279d6fcab"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual Gio::Settings::~Settings </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a1c549bfe41401ed0fb2eb7059cf8a45b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">Gio::Settings::Settings </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>schema</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">explicit</span><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a947930fadf94b1d0a4860eeafc04dd76"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">Gio::Settings::Settings </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>schema</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>path</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">explicit</span><span class="mlabel">protected</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="ae1309ff09c69e278fbb9869219c3ac03"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gio::Settings::apply </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Applies any changes that have been made to the settings. </p>
<p>This function does nothing unless <em>settings</em> is in 'delay-apply' mode; see g_settings_delay(). In the normal case settings are always applied immediately. </p>
</div>
</div>
<a class="anchor" id="a39d962b3e73ec10608a3a744cb4255b4"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gio::Settings::bind </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGlib_1_1ObjectBase.html">Glib::ObjectBase</a>* </td>
<td class="paramname"><em>object</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>property</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__giommEnums.html#gab41e4379084ff04d75104143d99ecf61">SettingsBindFlags</a> </td>
<td class="paramname"><em>flags</em> = <code><a class="el" href="namespaceGio.html#gab41e4379084ff04d75104143d99ecf61a3ce16849b0de4e3ee431fdc4b9e22743">SETTINGS_BIND_DEFAULT</a></code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Create a binding between the <em>key</em> in the <em>settings</em> object and the property <em>property</em> of <em>object</em>. </p>
<p>The binding uses the default GIO mapping functions to map between the settings and property values. These functions handle booleans, numeric types and string types in a straightforward way. Use g_settings_bind_with_mapping() if you need a custom mapping, or map between types that are not supported by the default mapping functions.</p>
<p>Unless the <em>flags</em> include SETTINGS_BIND_NO_SENSITIVITY, this function also establishes a binding between the writability of <em>key</em> and the "sensitive" property of <em>object</em> (if <em>object</em> has a boolean property by that name). See g_settings_bind_writable() for more details about writable bindings.</p>
<p>Note that the lifecycle of the binding is tied to the object, and that you can have only one binding per object property. If you bind the same property twice on the same object, the second binding overrides the first one.</p>
<dl class="since_2_26"><dt><b><a class="el" href="since_2_26.html#_since_2_26000274">Since glibmm 2.26:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>The key to bind. </td></tr>
<tr><td class="paramname">object</td><td>A Object. </td></tr>
<tr><td class="paramname">property</td><td>The name of the property to bind. </td></tr>
<tr><td class="paramname">flags</td><td>Flags for the binding. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="a893453b68172f5ecb6c008d2d642da3f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gio::Settings::bind </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGlib_1_1PropertyProxy__Base.html">Glib::PropertyProxy_Base</a>& </td>
<td class="paramname"><em>property_proxy</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="group__giommEnums.html#gab41e4379084ff04d75104143d99ecf61">SettingsBindFlags</a> </td>
<td class="paramname"><em>flags</em> = <code><a class="el" href="namespaceGio.html#gab41e4379084ff04d75104143d99ecf61a3ce16849b0de4e3ee431fdc4b9e22743">SETTINGS_BIND_DEFAULT</a></code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a47c913cd1ce8122d742911fa54896fa7"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gio::Settings::bind_writable </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGlib_1_1ObjectBase.html">Glib::ObjectBase</a>* </td>
<td class="paramname"><em>object</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>property</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>inverted</em> = <code>false</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Create a binding between the writability of <em>key</em> in the <em>settings</em> object and the property <em>property</em> of <em>object</em>. </p>
<p>The property must be boolean; "sensitive" or "visible" properties of widgets are the most likely candidates.</p>
<p>Writable bindings are always uni-directional; changes of the writability of the setting will be propagated to the object property, not the other way.</p>
<p>When the <em>inverted</em> argument is <code>true</code>, the binding inverts the value as it passes from the setting to the object, i.e. <em>property</em> will be set to <code>true</code> if the key is not writable.</p>
<p>Note that the lifecycle of the binding is tied to the object, and that you can have only one binding per object property. If you bind the same property twice on the same object, the second binding overrides the first one.</p>
<dl class="since_2_26"><dt><b><a class="el" href="since_2_26.html#_since_2_26000275">Since glibmm 2.26:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>The key to bind. </td></tr>
<tr><td class="paramname">object</td><td>A Object. </td></tr>
<tr><td class="paramname">property</td><td>The name of a boolean property to bind. </td></tr>
<tr><td class="paramname">inverted</td><td>Whether to 'invert' the value. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ac0da884631dc04c338287e475a5b93fe"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gio::Settings::bind_writable </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGlib_1_1PropertyProxy__Base.html">Glib::PropertyProxy_Base</a>& </td>
<td class="paramname"><em>property_proxy</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>inverted</em> = <code>false</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a7a7fcf5a7c18611e224541309841205b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGio_1_1Settings.html">Settings</a>> Gio::Settings::create </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>schema</em></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">
</div>
</div>
<a class="anchor" id="aa985b9447d252fb8d8d1e727e51b0b7b"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static <a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGio_1_1Settings.html">Settings</a>> Gio::Settings::create </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>schema</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>path</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">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a03112726403e4b3b8d45f203d7307d6b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGio_1_1Action.html">Action</a>> Gio::Settings::create_action </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Creates a <a class="el" href="classGio_1_1Action.html" title="Action - An action. ">Action</a> corresponding to a given <a class="el" href="classGio_1_1Settings.html" title="A high-level API for application settings. ">Settings</a> key. </p>
<p>The action has the same name as the key.</p>
<p>The value of the key becomes the state of the action and the action is enabled when the key is writable. Changing the state of the action results in the key being written to. Changes to the value or writability of the key cause appropriate change notifications to be emitted for the action.</p>
<p>For boolean-valued keys, action activations take no parameter and result in the toggling of the value. For all other types, activations take the new value for the key (which must have the correct type).</p>
<dl class="since_2_32"><dt><b><a class="el" href="since_2_32.html#_since_2_32000094">Since glibmm 2.32:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>The name of a key in <em>settings</em>. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A new <a class="el" href="classGio_1_1Action.html" title="Action - An action. ">Action</a>. </dd></dl>
</div>
</div>
<a class="anchor" id="a33b026961c111c7cb811dd8886bd10aa"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gio::Settings::delay </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Changes the <a class="el" href="classGio_1_1Settings.html" title="A high-level API for application settings. ">Settings</a> object into 'delay-apply' mode. </p>
<p>In this mode, changes to <em>settings</em> are not immediately propagated to the backend, but kept locally until g_settings_apply() is called.</p>
<dl class="since_2_26"><dt><b><a class="el" href="since_2_26.html#_since_2_26000271">Since glibmm 2.26:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="a0e00e5ad1bf22709184cb576e4b933a7"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gio::Settings::get_boolean </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the value that is stored at <em>key</em> in <em>settings</em>. </p>
<p>A convenience variant of g_settings_get() for booleans.</p>
<p>It is a programmer error to give a <em>key</em> that isn't specified as having a boolean type in the schema for <em>settings</em>.</p>
<dl class="since_2_26"><dt><b><a class="el" href="since_2_26.html#_since_2_26000258">Since glibmm 2.26:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>The key to get the value for. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A boolean. </dd></dl>
</div>
</div>
<a class="anchor" id="a98cfd433996d89d031108ca92e4d43d8"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a><<a class="el" href="classGio_1_1Settings.html">Settings</a>> Gio::Settings::get_child </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>name</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Creates a child settings object which has a base path of <code>base-path/ @a name</code>, where <code>base-path</code> is the base path of <em>settings</em>. </p>
<p>The schema for the child settings object must have been declared in the schema of <em>settings</em> using a <child> element.</p>
<dl class="since_2_26"><dt><b><a class="el" href="since_2_26.html#_since_2_26000268">Since glibmm 2.26:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">name</td><td>The name of the child schema. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A 'child' settings object. </dd></dl>
</div>
</div>
<a class="anchor" id="ab5afa45ac5edd6ee5c3d55325c9984a9"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGlib_1_1RefPtr.html">Glib::RefPtr</a><const <a class="el" href="classGio_1_1Settings.html">Settings</a>> Gio::Settings::get_child </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>name</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Creates a child settings object which has a base path of <code>base-path/ @a name</code>, where <code>base-path</code> is the base path of <em>settings</em>. </p>
<p>The schema for the child settings object must have been declared in the schema of <em>settings</em> using a <child> element.</p>
<dl class="since_2_26"><dt><b><a class="el" href="since_2_26.html#_since_2_26000269">Since glibmm 2.26:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">name</td><td>The name of the child schema. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A 'child' settings object. </dd></dl>
</div>
</div>
<a class="anchor" id="af3c0e321d54534eb9b4d376fd4093fa5"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gio::Settings::get_default_value </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGlib_1_1VariantBase.html">Glib::VariantBase</a>& </td>
<td class="paramname"><em>value</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the "default value" of a key. </p>
<p>This is the value that would be read if <a class="el" href="classGio_1_1Settings.html#a8fe9b5174d02d36b6b8fdacb0b10a049" title="Resets key to its default value. ">reset()</a> were to be called on the key.</p>
<p>Note that this may be a different value than returned by <a class="el" href="classGio_1_1Settings.html#af3c0e321d54534eb9b4d376fd4093fa5" title="Gets the "default value" of a key. ">get_default_value()</a> if the system administrator has provided a default value.</p>
<p>Comparing the return values of <a class="el" href="classGio_1_1Settings.html#af3c0e321d54534eb9b4d376fd4093fa5" title="Gets the "default value" of a key. ">get_default_value()</a> and value() is not sufficient for determining if a value has been set because the user may have explicitly set the value to something that happens to be equal to the default. The difference here is that if the default changes in the future, the user's key will still be set.</p>
<p>This method may be useful for adding an indication to a UI of what the default value was before the user set it.</p>
<p>It is a programmer error to give a <em>key</em> that isn't contained in the schema for the settings.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>The key to get the default value for. </td></tr>
<tr><td class="paramname">value</td><td>A Variant of the expected type.</td></tr>
</table>
</dd>
</dl>
<dl class="since_2_40"><dt><b><a class="el" href="since_2_40.html#_since_2_40000030">Since glibmm 2.40:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="ac5055dc109007beb12256ca312a0c356"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">double Gio::Settings::get_double </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the value that is stored at <em>key</em> in <em>settings</em>. </p>
<p>A convenience variant of g_settings_get() for doubles.</p>
<p>It is a programmer error to give a <em>key</em> that isn't specified as having a 'double' type in the schema for <em>settings</em>.</p>
<dl class="since_2_26"><dt><b><a class="el" href="since_2_26.html#_since_2_26000262">Since glibmm 2.26:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>The key to get the value for. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A double. </dd></dl>
</div>
</div>
<a class="anchor" id="a4f6a1558661cba8ceea376fc9f81f52f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int Gio::Settings::get_enum </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the value that is stored in <em>settings</em> for <em>key</em> and converts it to the enum value that it represents. </p>
<p>In order to use this function the type of the value must be a string and it must be marked in the schema file as an enumerated type.</p>
<p>It is a programmer error to give a <em>key</em> that isn't contained in the schema for <em>settings</em> or is not marked as an enumerated type.</p>
<p>If the value stored in the configuration database is not a valid value for the enumerated type then this function will return the default value.</p>
<dl class="since_2_26"><dt><b><a class="el" href="since_2_26.html#_since_2_26000266">Since glibmm 2.26:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>The key to get the value for. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The enum value. </dd></dl>
</div>
</div>
<a class="anchor" id="a7fe28dd8bb422f55471d636e6bc5b648"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gio::Settings::get_enum </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>value</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Looks up the enumerated type nick for <em>value</em> and writes it to <em>key</em>, within <em>settings</em>. </p>
<p>It is a programmer error to give a <em>key</em> that isn't contained in the schema for <em>settings</em> or is not marked as an enumerated type, or for <em>value</em> not to be a valid value for the named type.</p>
<p>After performing the write, accessing <em>key</em> directly with g_settings_get_string() will return the 'nick' associated with <em>value</em>.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>A key, within <em>settings</em>. </td></tr>
<tr><td class="paramname">value</td><td>An enumerated value. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code>, if the set succeeds. </dd></dl>
</div>
</div>
<a class="anchor" id="a679796b7368f679fa28478c6861cdad9"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">guint Gio::Settings::get_flags </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the value that is stored in <em>settings</em> for <em>key</em> and converts it to the flags value that it represents. </p>
<p>In order to use this function the type of the value must be an array of strings and it must be marked in the schema file as an flags type.</p>
<p>It is a programmer error to give a <em>key</em> that isn't contained in the schema for <em>settings</em> or is not marked as a flags type.</p>
<p>If the value stored in the configuration database is not a valid value for the flags type then this function will return the default value.</p>
<dl class="since_2_26"><dt><b><a class="el" href="since_2_26.html#_since_2_26000267">Since glibmm 2.26:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>The key to get the value for. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>The flags value. </dd></dl>
</div>
</div>
<a class="anchor" id="a049877419a2d25a282ebbfd013bfea79"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gio::Settings::get_flags </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">guint </td>
<td class="paramname"><em>value</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Looks up the flags type nicks for the bits specified by <em>value</em>, puts them in an array of strings and writes the array to <em>key</em>, within <em>settings</em>. </p>
<p>It is a programmer error to give a <em>key</em> that isn't contained in the schema for <em>settings</em> or is not marked as a flags type, or for <em>value</em> to contain any bits that are not value for the named type.</p>
<p>After performing the write, accessing <em>key</em> directly with g_settings_get_strv() will return an array of 'nicks'; one for each bit in <em>value</em>.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>A key, within <em>settings</em>. </td></tr>
<tr><td class="paramname">value</td><td>A flags value. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code>, if the set succeeds. </dd></dl>
</div>
</div>
<a class="anchor" id="a84b99d6419887e0812f3a58eaece8e88"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gio::Settings::get_has_unapplied </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Returns whether the <a class="el" href="classGio_1_1Settings.html" title="A high-level API for application settings. ">Settings</a> object has any unapplied changes. </p>
<p>This can only be the case if it is in 'delayed-apply' mode.</p>
<dl class="since_2_26"><dt><b><a class="el" href="since_2_26.html#_since_2_26000272">Since glibmm 2.26:</a></b></dt><dd></dd></dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if <em>settings</em> has unapplied changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a1f980e517365e5aa4520e982f5e11b27"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">int Gio::Settings::get_int </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the value that is stored at <em>key</em> in <em>settings</em>. </p>
<p>A convenience variant of g_settings_get() for 32-bit integers.</p>
<p>It is a programmer error to give a <em>key</em> that isn't specified as having a int32 type in the schema for <em>settings</em>.</p>
<dl class="since_2_26"><dt><b><a class="el" href="since_2_26.html#_since_2_26000256">Since glibmm 2.26:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>The key to get the value for. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>An integer. </dd></dl>
</div>
</div>
<a class="anchor" id="a52bda84f1cb85f2efab6b82c72b41b7f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a> Gio::Settings::get_string </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the value that is stored at <em>key</em> in <em>settings</em>. </p>
<p>A convenience variant of g_settings_get() for strings.</p>
<p>It is a programmer error to give a <em>key</em> that isn't specified as having a string type in the schema for <em>settings</em>.</p>
<dl class="since_2_26"><dt><b><a class="el" href="since_2_26.html#_since_2_26000260">Since glibmm 2.26:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>The key to get the value for. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A newly-allocated string. </dd></dl>
</div>
</div>
<a class="anchor" id="ae5524c5c368069a6676755c01b968f10"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="group__ContHandles.html#ga8e243b697be740f5f7d4b578ae50db41">Glib::StringArrayHandle</a> Gio::Settings::get_string_array </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>A convenience variant of g_settings_get() for string arrays. </p>
<p>It is a programmer error to give a <em>key</em> that isn't specified as having an array of strings type in the schema for <em>settings</em>.</p>
<dl class="since_2_26"><dt><b><a class="el" href="since_2_26.html#_since_2_26000264">Since glibmm 2.26:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>The key to get the value for. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>A newly-allocated, <code>0</code>-terminated array of strings, the value that is stored at <em>key</em> in <em>settings</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a47e88375019e4cbd035d8fd02d59e93a"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static GType Gio::Settings::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="addf324dee920be4f16220795c3ee235f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">guint Gio::Settings::get_uint </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the value that is stored at <em>key</em> in <em>settings</em>. </p>
<p>A convenience variant of g_settings_get() for 32-bit unsigned integers.</p>
<p>It is a programmer error to give a <em>key</em> that isn't specified as having a uint32 type in the schema for <em>settings</em>.</p>
<dl class="since_2_30"><dt><b><a class="el" href="since_2_30.html#_since_2_30000037">Since glibmm 2.30:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>The key to get the value for. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>An unsigned integer. </dd></dl>
</div>
</div>
<a class="anchor" id="a7e5a08b2d224689d009e17066386e231"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gio::Settings::get_user_value </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGlib_1_1VariantBase.html">Glib::VariantBase</a>& </td>
<td class="paramname"><em>value</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Checks the "user value" of a <em>key</em>, if there is one. </p>
<p>The user value of a key is the last value that was set by the user.</p>
<p>After calling <a class="el" href="classGio_1_1Settings.html#a8fe9b5174d02d36b6b8fdacb0b10a049" title="Resets key to its default value. ">reset()</a> this function should always return false (assuming something is not wrong with the system configuration).</p>
<p>It is possible that <a class="el" href="classGio_1_1Settings.html#ac36cd4d128d4af6c0aac34572f4d0930" title="Gets the value that is stored in the settings for a key. ">get_value()</a> will return a different value than this method. This can happen in the case that the user set a value for a key that was subsequently locked down by the system administrator – this method will return the user's old value.</p>
<p>This method may be useful for adding a "reset" option to a UI or for providing indication that a particular value has been changed.</p>
<p>It is a programmer error to give a <em>key</em> that isn't contained in the schema for the settings.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>The key to get the user value for. </td></tr>
<tr><td class="paramname">value</td><td>A Variant of the expected type. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>true if a user value was found.</dd></dl>
<dl class="since_2_40"><dt><b><a class="el" href="since_2_40.html#_since_2_40000029">Since glibmm 2.40:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="ac36cd4d128d4af6c0aac34572f4d0930"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gio::Settings::get_value </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype"><a class="el" href="classGlib_1_1VariantBase.html">Glib::VariantBase</a>& </td>
<td class="paramname"><em>value</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the value that is stored in the settings for a <em>key</em>. </p>
<p>It is a programmer error to give a <em>key</em> that isn't contained in the schema for the settings.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>The key to get the value for. </td></tr>
<tr><td class="paramname">value</td><td>A Variant of the expected type.</td></tr>
</table>
</dd>
</dl>
<dl class="since_2_28"><dt><b><a class="el" href="since_2_28.html#_since_2_28000180">Since glibmm 2.28:</a></b></dt><dd></dd></dl>
</div>
</div>
<a class="anchor" id="a1350e8f1b8a2f0f02c0e00d0cd7077d0"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">GSettings* Gio::Settings::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 GObject. </p>
</div>
</div>
<a class="anchor" id="a3c1af502c3c7a372b07987c4d8e320c5"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">const GSettings* Gio::Settings::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 GObject. </p>
</div>
</div>
<a class="anchor" id="ade0eeed443f1dfbc4b649bb294e445f6"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">GSettings* Gio::Settings::gobj_copy </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. </p>
</div>
</div>
<a class="anchor" id="a33a266c5d291000943cae9dda5cf9884"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gio::Settings::is_writable </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>name</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Finds out if a key can be written or not. </p>
<dl class="since_2_26"><dt><b><a class="el" href="since_2_26.html#_since_2_26000270">Since glibmm 2.26:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">name</td><td>The name of a key. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if the key <em>name</em> is writable. </dd></dl>
</div>
</div>
<a class="anchor" id="a482a46eb92894e73e6678ba48d0e8c15"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a><<a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>> Gio::Settings::list_children </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the list of children on <em>settings</em>. </p>
<p>The list is exactly the list of strings for which it is not an error to call g_settings_get_child().</p>
<p>For GSettings objects that are lists, this value can change at any time and you should connect to the "children-changed" signal to watch for those changes. Note that there is a race condition here: you may request a child after listing it only for it to have been destroyed in the meantime. For this reason, g_settings_get_child() may return <code>0</code> even for a child that was listed by this function.</p>
<p>For GSettings objects that are not lists, you should probably not be calling this function from "normal" code (since you should already know what children are in your schema). This function may still be useful there for introspection reasons, however.</p>
<p>You should free the return value with Glib::strfreev() when you are done with it.</p>
<dl class="section return"><dt>Returns</dt><dd>A list of the children on <em>settings</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a28d9dc219f86a7372e9a2dd7638daa9b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a><<a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>> Gio::Settings::list_keys </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Introspects the list of keys on <em>settings</em>. </p>
<p>You should probably not be calling this function from "normal" code (since you should already know what keys are in your schema). This function is intended for introspection reasons.</p>
<p>You should free the return value with Glib::strfreev() when you are done with it.</p>
<dl class="section return"><dt>Returns</dt><dd>A list of the keys on <em>settings</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a78d4be25c912ac1f00028762ab92c409"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">static <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/libstdc++.tag:http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/" href="http://gcc.gnu.org/onlinedocs/libstdc++/latest-doxygen/a00965.html">std::vector</a><<a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>> Gio::Settings::list_schemas </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">
<dl class="since_2_26"><dt><b><a class="el" href="since_2_26.html#_since_2_26000273">Since glibmm 2.26:</a></b></dt><dd></dd></dl>
<p>Deprecated:2.40: Use g_settings_schema_source_list_schemas() instead. If you used g_settings_list_schemas() to check for the presence of a particular schema, use g_settings_schema_source_lookup() instead of your whole loop.</p>
<dl class="section return"><dt>Returns</dt><dd>A list of <a class="el" href="classGio_1_1Settings.html" title="A high-level API for application settings. ">Settings</a> schemas that are available. The list must not be modified or freed. </dd></dl>
</div>
</div>
<a class="anchor" id="a4e88dd069cb1aab8e39ca1c058e552ce"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void Gio::Settings::on_changed </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This is a default handler for the signal <a class="el" href="classGio_1_1Settings.html#aedb2d1200cfc06141c56daf8a6c45456">signal_changed()</a>. </p>
</div>
</div>
<a class="anchor" id="a6824e75577a579815cc9eaf64f8b15f9"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool Gio::Settings::on_writable_change_event </td>
<td>(</td>
<td class="paramtype">guint </td>
<td class="paramname"><em>key</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This is a default handler for the signal <a class="el" href="classGio_1_1Settings.html#ae24c1784fc1f2fae4f758ea62bc70c31">signal_writable_change_event()</a>. </p>
</div>
</div>
<a class="anchor" id="a2428f5d4bf7c40753fc112412197c5cb"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void Gio::Settings::on_writable_changed </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em></td><td>)</td>
<td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>This is a default handler for the signal <a class="el" href="classGio_1_1Settings.html#aa155c63e6c1c5218e3793f86f9cab0ff">signal_writable_changed()</a>. </p>
</div>
</div>
<a class="anchor" id="aaa97605482bec03816ec11caa80d54ee"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gio::Settings::property_delay_apply </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Whether this settings object is in 'delay-apply' mode. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p><dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a98990a4c6063822aa31e5b6798dfcd1b"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< bool > Gio::Settings::property_has_unapplied </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>TRUE if there are outstanding changes to <a class="el" href="classGio_1_1Settings.html#ae1309ff09c69e278fbb9869219c3ac03" title="Applies any changes that have been made to the settings. ">apply()</a>. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p><dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a2d0ad409118650163e5a921b656cc2ca"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="elRef" doxygen="/opt/gnome/share/mm-common/doctags/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> > Gio::Settings::property_path </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The path within the backend where the settings are. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p><dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a2158459609a1be4022003195534dc6c2"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a> > Gio::Settings::property_schema </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The name of the schema for this settings object. </p>
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000053">Deprecated:</a></b></dt><dd>Use the 'schema-id' property instead. In a future version, this property may instead refer to a SettingsSchema.</dd></dl>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p><dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a8ba6fa118331249e8c56cc2169707b93"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGlib_1_1PropertyProxy__ReadOnly.html">Glib::PropertyProxy_ReadOnly</a>< <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a> > Gio::Settings::property_schema_id </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>The name of the schema for this settings object. </p>
<p>You rarely need to use properties because there are get_ and set_ methods for almost all of them. </p><dl class="section return"><dt>Returns</dt><dd>A PropertyProxy_ReadOnly that allows you to get the value of the property, or receive notification when the value of the property changes. </dd></dl>
</div>
</div>
<a class="anchor" id="a1b2ab194e7cbf982622eb416a1b68047"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gio::Settings::range_check </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGlib_1_1VariantBase.html">Glib::VariantBase</a>& </td>
<td class="paramname"><em>value</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</div><div class="memdoc">
<p>Checks if the given <em>value</em> is of the correct type and within the permitted range for <em>key</em>. </p>
<dl class="since_2_28"><dt><b><a class="el" href="since_2_28.html#_since_2_28000181">Since glibmm 2.28:</a></b></dt><dd></dd></dl>
<p>Deprecated:2.40:Use g_settings_schema_key_range_check() instead.</p>
<dl class="deprecated"><dt><b><a class="el" href="deprecated.html#_deprecated000052">Deprecated:</a></b></dt><dd>Use g_settings_schema_key_range_check() instead.</dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>The key to check. </td></tr>
<tr><td class="paramname">value</td><td>The value to check. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if <em>value</em> is valid for <em>key</em>. </dd></dl>
</div>
</div>
<a class="anchor" id="a8fe9b5174d02d36b6b8fdacb0b10a049"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gio::Settings::reset </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Resets <em>key</em> to its default value. </p>
<p>This call resets the key, as much as possible, to its default value. That might the value specified in the schema or the one set by the administrator.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>The name of a key. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ac11529acbf1dd553e5f3ebc5c0125ecd"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gio::Settings::revert </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Reverts all non-applied changes to the settings. </p>
<p>This function does nothing unless <em>settings</em> is in 'delay-apply' mode; see g_settings_delay(). In the normal case settings are always applied immediately.</p>
<p>Change notifications will be emitted for affected keys. </p>
</div>
</div>
<a class="anchor" id="a08d737b902c907b692894ab577c4142e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gio::Settings::set_boolean </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">bool </td>
<td class="paramname"><em>value</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets <em>key</em> in <em>settings</em> to <em>value</em>. </p>
<p>A convenience variant of g_settings_set() for booleans.</p>
<p>It is a programmer error to give a <em>key</em> that isn't specified as having a boolean type in the schema for <em>settings</em>.</p>
<dl class="since_2_26"><dt><b><a class="el" href="since_2_26.html#_since_2_26000259">Since glibmm 2.26:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>The name of the key to set. </td></tr>
<tr><td class="paramname">value</td><td>The value to set it to. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if setting the key succeeded, <code>false</code> if the key was not writable. </dd></dl>
</div>
</div>
<a class="anchor" id="a81b1bebc7cbf6518aa13ab00bf9966d5"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gio::Settings::set_double </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">double </td>
<td class="paramname"><em>value</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets <em>key</em> in <em>settings</em> to <em>value</em>. </p>
<p>A convenience variant of g_settings_set() for doubles.</p>
<p>It is a programmer error to give a <em>key</em> that isn't specified as having a 'double' type in the schema for <em>settings</em>.</p>
<dl class="since_2_26"><dt><b><a class="el" href="since_2_26.html#_since_2_26000263">Since glibmm 2.26:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>The name of the key to set. </td></tr>
<tr><td class="paramname">value</td><td>The value to set it to. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if setting the key succeeded, <code>false</code> if the key was not writable. </dd></dl>
</div>
</div>
<a class="anchor" id="a7b252643c8ce35c7892cb0b831d67046"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gio::Settings::set_int </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>value</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets <em>key</em> in <em>settings</em> to <em>value</em>. </p>
<p>A convenience variant of g_settings_set() for 32-bit integers.</p>
<p>It is a programmer error to give a <em>key</em> that isn't specified as having a int32 type in the schema for <em>settings</em>.</p>
<dl class="since_2_26"><dt><b><a class="el" href="since_2_26.html#_since_2_26000257">Since glibmm 2.26:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>The name of the key to set. </td></tr>
<tr><td class="paramname">value</td><td>The value to set it to. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if setting the key succeeded, <code>false</code> if the key was not writable. </dd></dl>
</div>
</div>
<a class="anchor" id="ad1b4617d76cc9166e68bc849d22c5677"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gio::Settings::set_string </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>value</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets <em>key</em> in <em>settings</em> to <em>value</em>. </p>
<p>A convenience variant of g_settings_set() for strings.</p>
<p>It is a programmer error to give a <em>key</em> that isn't specified as having a string type in the schema for <em>settings</em>.</p>
<dl class="since_2_26"><dt><b><a class="el" href="since_2_26.html#_since_2_26000261">Since glibmm 2.26:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>The name of the key to set. </td></tr>
<tr><td class="paramname">value</td><td>The value to set it to. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if setting the key succeeded, <code>false</code> if the key was not writable. </dd></dl>
</div>
</div>
<a class="anchor" id="a9e6e1bf8334f40cb76999a0678ac1b41"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gio::Settings::set_string_array </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="group__ContHandles.html#ga8e243b697be740f5f7d4b578ae50db41">Glib::StringArrayHandle</a>& </td>
<td class="paramname"><em>value</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets <em>key</em> in <em>settings</em> to <em>value</em>. </p>
<p>A convenience variant of g_settings_set() for string arrays. If <em>value</em> is <code>0</code>, then <em>key</em> is set to be the empty array.</p>
<p>It is a programmer error to give a <em>key</em> that isn't specified as having an array of strings type in the schema for <em>settings</em>.</p>
<dl class="since_2_26"><dt><b><a class="el" href="since_2_26.html#_since_2_26000265">Since glibmm 2.26:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>The name of the key to set. </td></tr>
<tr><td class="paramname">value</td><td>The value to set it to, or <code>0</code>. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if setting the key succeeded, <code>false</code> if the key was not writable. </dd></dl>
</div>
</div>
<a class="anchor" id="a10284d1e3636cc50aece0268ac18be87"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void Gio::Settings::set_uiint </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">guint </td>
<td class="paramname"><em>value</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets <em>key</em> in <em>settings</em> to <em>value</em>. </p>
<p>A convenience variant of g_settings_set() for 32-bit unsigned integers.</p>
<p>It is a programmer error to give a <em>key</em> that isn't specified as having a uint32 type in the schema for <em>settings</em>.</p>
<dl class="since_2_30"><dt><b><a class="el" href="since_2_30.html#_since_2_30000038">Since glibmm 2.30:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>The name of the key to set. </td></tr>
<tr><td class="paramname">value</td><td>The value to set it to. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if setting the key succeeded, <code>false</code> if the key was not writable. </dd></dl>
</div>
</div>
<a class="anchor" id="a3b98d9d71ac41b70f09caf6cb4341183"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">bool Gio::Settings::set_value </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& </td>
<td class="paramname"><em>key</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classGlib_1_1VariantBase.html">Glib::VariantBase</a>& </td>
<td class="paramname"><em>value</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Sets <em>key</em> in <em>settings</em> to <em>value</em>. </p>
<p>It is a programmer error to give a <em>key</em> that isn't contained in the schema for <em>settings</em> or for <em>value</em> to have the incorrect type, per the schema.</p>
<p>If <em>value</em> is floating then this function consumes the reference.</p>
<dl class="since_2_26"><dt><b><a class="el" href="since_2_26.html#_since_2_26000255">Since glibmm 2.26:</a></b></dt><dd></dd></dl>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>The name of the key to set. </td></tr>
<tr><td class="paramname">value</td><td>A Variant of the correct type. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> if setting the key succeeded, <code>false</code> if the key was not writable. </dd></dl>
</div>
</div>
<a class="anchor" id="aedb2d1200cfc06141c56daf8a6c45456"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGlib_1_1SignalProxy1.html">Glib::SignalProxy1</a>< void,const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& > Gio::Settings::signal_changed </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_changed(const <a class="el" href="classGlib_1_1ustring.html" title="Glib::ustring has much the same interface as std::string, but contains Unicode characters encoded as ...">Glib::ustring</a>& key)</code></dd></dl>
<p>The "changed" signal is emitted when a key has potentially changed. You should call one of the g_settings_get() calls to check the new value.</p>
<p>This signal supports detailed connections. You can connect to the detailed signal "changed::x" in order to only receive callbacks when key "x" changes.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>The name of the key that changed. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<a class="anchor" id="ae24c1784fc1f2fae4f758ea62bc70c31"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGlib_1_1SignalProxy1.html">Glib::SignalProxy1</a>< bool,guint > Gio::Settings::signal_writable_change_event </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>bool on_my_writable_change_event(guint key)</code></dd></dl>
<p>The "writable-change-event" signal is emitted once per writability change event that affects this settings object. You should connect to this signal if you are interested in viewing groups of changes before they are split out into multiple emissions of the "writable-changed" signal. For most use cases it is more appropriate to use the "writable-changed" signal.</p>
<p>In the event that the writability change applies only to a single key, <em>key</em> will be set to the Quark for that key. In the event that the writability change affects the entire settings object, <em>key</em> will be 0.</p>
<p>The default handler for this signal invokes the "writable-changed" and "changed" signals for each affected key. This is done because changes in writability might also imply changes in value (if for example, a new mandatory setting is introduced). If any other connected handler returns <code>true</code> then this default functionality will be suppressed.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>The quark of the key, or 0. </td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd><code>true</code> to stop other handlers from being invoked for the event. <code>false</code> to propagate the event further. </dd></dl>
</div>
</div>
<a class="anchor" id="aa155c63e6c1c5218e3793f86f9cab0ff"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname"><a class="el" href="classGlib_1_1SignalProxy1.html">Glib::SignalProxy1</a>< void,const <a class="el" href="classGlib_1_1ustring.html">Glib::ustring</a>& > Gio::Settings::signal_writable_changed </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section user"><dt>Slot Prototype:</dt><dd><code>void on_my_writable_changed(const <a class="el" href="classGlib_1_1ustring.html" title="Glib::ustring has much the same interface as std::string, but contains Unicode characters encoded as ...">Glib::ustring</a>& key)</code></dd></dl>
<p>The "writable-changed" signal is emitted when the writability of a key has potentially changed. You should call g_settings_is_writable() in order to determine the new status.</p>
<p>This signal supports detailed connections. You can connect to the detailed signal "writable-changed::x" in order to only receive callbacks when the writability of "x" changes.</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">key</td><td>The key. </td></tr>
</table>
</dd>
</dl>
</div>
</div>
<h2 class="groupheader">Friends And Related Function Documentation</h2>
<a class="anchor" id="ae47167a74b09e7410bc6eadea3ba989c"></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="classGlib_1_1RefPtr.html">Glib::RefPtr</a>< <a class="el" href="classGio_1_1Settings.html">Gio::Settings</a> > wrap </td>
<td>(</td>
<td class="paramtype">GSettings * </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="el" href="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>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated on Mon Sep 22 2014 21:38:32 for glibmm by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/>
</a> 1.8.7
</small></address>
</body>
</html>
|