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
|
<!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"/>
<title>wxWidgets: wxFileConfig 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" />
<link href="extra_stylesheet.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="page_container">
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0" style="width: 100%;">
<tbody>
<tr>
<td id="projectlogo">
<a href="http://www.wxwidgets.org/" target="_new">
<img alt="wxWidgets" src="logo.png"/>
</a>
</td>
<td style="padding-left: 0.5em; text-align: right;">
<span id="projectnumber">Version: 3.0.2</span>
</td>
</tr>
</tbody>
</table>
</div>
<!-- Generated by Doxygen 1.8.2 -->
<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>Categories</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li><a href="files.html"><span>Files</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="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></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="classwx_file_config-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">wxFileConfig Class Reference<div class="ingroups"><a class="el" href="group__group__class__cfg.html">Application and System configuration</a></div></div> </div>
</div><!--header-->
<div class="contents">
<p><code>#include <wx/fileconf.h></code></p>
<div id="dynsection-0" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;">
<img id="dynsection-0-trigger" src="closed.png" alt="+"/> Inheritance diagram for wxFileConfig:</div>
<div id="dynsection-0-summary" class="dynsummary" style="display:block;">
</div>
<div id="dynsection-0-content" class="dyncontent" style="display:none;">
<div class="center"><img src="classwx_file_config__inherit__graph.png" border="0" usemap="#wx_file_config_inherit__map" alt="Inheritance graph"/></div>
<map name="wx_file_config_inherit__map" id="wx_file_config_inherit__map">
<area shape="rect" id="node2" href="classwx_config_base.html" title="wxConfigBase defines the basic interface of all config classes." alt="" coords="5,83,107,111"/><area shape="rect" id="node4" href="classwx_object.html" title="This is the root class of many of the wxWidgets classes." alt="" coords="19,6,93,34"/></map>
<center><span class="legend">[<a href="graph_legend.html">legend</a>]</span></center></div>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p><a class="el" href="classwx_file_config.html" title="wxFileConfig implements wxConfigBase interface for storing and retrieving configuration information u...">wxFileConfig</a> implements <a class="el" href="classwx_config_base.html" title="wxConfigBase defines the basic interface of all config classes.">wxConfigBase</a> interface for storing and retrieving configuration information using plain text files. </p>
<p>The files have a simple format reminiscent of Windows INI files with lines of the form <code>"key = value"</code> defining the keys and lines of special form <code>"[group]"</code> indicating the start of each group.</p>
<p>This class is used by default for wxConfig on Unix platforms but may also be used explicitly if you want to use files and not the registry even under Windows.</p>
<h2></h2>
<div><span class="lib">Library:</span>  <span class="lib_text"><a class="el" href="page_libs.html#page_libs_wxbase">wxBase</a></span></div><div><span class="category">Category:</span>  <span class="category_text"><a class="el" href="group__group__class__cfg.html">Application and System configuration</a></span></div><dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_file_config.html#a6220fdc0f07a7e36e559e58d29965337" title="Saves all config data to the given stream, returns true if data was saved successfully or false on er...">wxFileConfig::Save</a> </dd></dl>
</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:a43f81c0b303155e84cecded7fc2f9a30"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_file_config.html#a43f81c0b303155e84cecded7fc2f9a30">wxFileConfig</a> (const <a class="el" href="classwx_string.html">wxString</a> &appName=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, const <a class="el" href="classwx_string.html">wxString</a> &vendorName=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, const <a class="el" href="classwx_string.html">wxString</a> &localFilename=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, const <a class="el" href="classwx_string.html">wxString</a> &globalFilename=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, long style=<a class="el" href="interface_2wx_2config_8h.html#abed82baf7f470b522273a3e37c24c600a2a23b2ec7fd6b2169ae2536cbce3ff64">wxCONFIG_USE_LOCAL_FILE</a>|<a class="el" href="interface_2wx_2config_8h.html#abed82baf7f470b522273a3e37c24c600a85c4768e6a0c1989e9251c7405c546bc">wxCONFIG_USE_GLOBAL_FILE</a>, const <a class="el" href="classwx_m_b_conv.html">wxMBConv</a> &conv=<a class="el" href="classwx_conv_auto.html">wxConvAuto</a>())</td></tr>
<tr class="memdesc:a43f81c0b303155e84cecded7fc2f9a30"><td class="mdescLeft"> </td><td class="mdescRight">Constructor allowing to choose the file names to use. <a href="#a43f81c0b303155e84cecded7fc2f9a30"></a><br/></td></tr>
<tr class="separator:a43f81c0b303155e84cecded7fc2f9a30"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a98f3c3d151840d9e7dc821586c4c07e5"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_file_config.html#a98f3c3d151840d9e7dc821586c4c07e5">wxFileConfig</a> (<a class="el" href="classwx_input_stream.html">wxInputStream</a> &is, const <a class="el" href="classwx_m_b_conv.html">wxMBConv</a> &conv=<a class="el" href="classwx_conv_auto.html">wxConvAuto</a>())</td></tr>
<tr class="memdesc:a98f3c3d151840d9e7dc821586c4c07e5"><td class="mdescLeft"> </td><td class="mdescRight">Read the config data from the specified stream instead of the associated file, as usual. <a href="#a98f3c3d151840d9e7dc821586c4c07e5"></a><br/></td></tr>
<tr class="separator:a98f3c3d151840d9e7dc821586c4c07e5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6220fdc0f07a7e36e559e58d29965337"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_file_config.html#a6220fdc0f07a7e36e559e58d29965337">Save</a> (<a class="el" href="classwx_output_stream.html">wxOutputStream</a> &os, const <a class="el" href="classwx_m_b_conv.html">wxMBConv</a> &conv=<a class="el" href="classwx_conv_auto.html">wxConvAuto</a>())</td></tr>
<tr class="memdesc:a6220fdc0f07a7e36e559e58d29965337"><td class="mdescLeft"> </td><td class="mdescRight">Saves all config data to the given stream, returns <span class="literal">true</span> if data was saved successfully or <span class="literal">false</span> on error. <a href="#a6220fdc0f07a7e36e559e58d29965337"></a><br/></td></tr>
<tr class="separator:a6220fdc0f07a7e36e559e58d29965337"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a709b9d8592d746ca7a0d80abdf20ce95"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_file_config.html#a709b9d8592d746ca7a0d80abdf20ce95">SetUmask</a> (int mode)</td></tr>
<tr class="memdesc:a709b9d8592d746ca7a0d80abdf20ce95"><td class="mdescLeft"> </td><td class="mdescRight">Allows to set the mode to be used for the config file creation. <a href="#a709b9d8592d746ca7a0d80abdf20ce95"></a><br/></td></tr>
<tr class="separator:a709b9d8592d746ca7a0d80abdf20ce95"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac2b05e8f651d7390e3c340e5c7feea0e"><td class="memItemLeft" align="right" valign="top">virtual void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_file_config.html#ac2b05e8f651d7390e3c340e5c7feea0e">SetPath</a> (const <a class="el" href="classwx_string.html">wxString</a> &strPath)</td></tr>
<tr class="memdesc:ac2b05e8f651d7390e3c340e5c7feea0e"><td class="mdescLeft"> </td><td class="mdescRight">Set current path: if the first character is '/', it is the absolute path, otherwise it is a relative path. <a href="#ac2b05e8f651d7390e3c340e5c7feea0e"></a><br/></td></tr>
<tr class="separator:ac2b05e8f651d7390e3c340e5c7feea0e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3b14df9f438cf17bcdf06eb0610d35da"><td class="memItemLeft" align="right" valign="top">virtual const <a class="el" href="classwx_string.html">wxString</a> & </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_file_config.html#a3b14df9f438cf17bcdf06eb0610d35da">GetPath</a> () const </td></tr>
<tr class="memdesc:a3b14df9f438cf17bcdf06eb0610d35da"><td class="mdescLeft"> </td><td class="mdescRight">Retrieve the current path (always as absolute path). <a href="#a3b14df9f438cf17bcdf06eb0610d35da"></a><br/></td></tr>
<tr class="separator:a3b14df9f438cf17bcdf06eb0610d35da"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aecbc6a538ba2b9ad41620fbc00ef2a12"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_file_config.html#aecbc6a538ba2b9ad41620fbc00ef2a12">GetFirstGroup</a> (<a class="el" href="classwx_string.html">wxString</a> &str, long &lIndex) const </td></tr>
<tr class="memdesc:aecbc6a538ba2b9ad41620fbc00ef2a12"><td class="mdescLeft"> </td><td class="mdescRight">Gets the first group. <a href="#aecbc6a538ba2b9ad41620fbc00ef2a12"></a><br/></td></tr>
<tr class="separator:aecbc6a538ba2b9ad41620fbc00ef2a12"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a16fe0dba12a11a0ab3f7a7ceb6306528"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_file_config.html#a16fe0dba12a11a0ab3f7a7ceb6306528">GetNextGroup</a> (<a class="el" href="classwx_string.html">wxString</a> &str, long &lIndex) const </td></tr>
<tr class="memdesc:a16fe0dba12a11a0ab3f7a7ceb6306528"><td class="mdescLeft"> </td><td class="mdescRight">Gets the next group. <a href="#a16fe0dba12a11a0ab3f7a7ceb6306528"></a><br/></td></tr>
<tr class="separator:a16fe0dba12a11a0ab3f7a7ceb6306528"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abccd0ec08228de5d433601eca2781b94"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_file_config.html#abccd0ec08228de5d433601eca2781b94">GetFirstEntry</a> (<a class="el" href="classwx_string.html">wxString</a> &str, long &lIndex) const </td></tr>
<tr class="memdesc:abccd0ec08228de5d433601eca2781b94"><td class="mdescLeft"> </td><td class="mdescRight">Gets the first entry. <a href="#abccd0ec08228de5d433601eca2781b94"></a><br/></td></tr>
<tr class="separator:abccd0ec08228de5d433601eca2781b94"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a37612450410cfad01a2ed52702875b37"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_file_config.html#a37612450410cfad01a2ed52702875b37">GetNextEntry</a> (<a class="el" href="classwx_string.html">wxString</a> &str, long &lIndex) const </td></tr>
<tr class="memdesc:a37612450410cfad01a2ed52702875b37"><td class="mdescLeft"> </td><td class="mdescRight">Gets the next entry. <a href="#a37612450410cfad01a2ed52702875b37"></a><br/></td></tr>
<tr class="separator:a37612450410cfad01a2ed52702875b37"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ad0738f455b2ea76e598d1e747576641d"><td class="memItemLeft" align="right" valign="top">virtual size_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_file_config.html#ad0738f455b2ea76e598d1e747576641d">GetNumberOfEntries</a> (bool bRecursive=false) const </td></tr>
<tr class="memdesc:ad0738f455b2ea76e598d1e747576641d"><td class="mdescLeft"> </td><td class="mdescRight">Get number of entries in the current group. <a href="#ad0738f455b2ea76e598d1e747576641d"></a><br/></td></tr>
<tr class="separator:ad0738f455b2ea76e598d1e747576641d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5dc8869a67cea091376c19438586bdca"><td class="memItemLeft" align="right" valign="top">virtual size_t </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_file_config.html#a5dc8869a67cea091376c19438586bdca">GetNumberOfGroups</a> (bool bRecursive=false) const </td></tr>
<tr class="memdesc:a5dc8869a67cea091376c19438586bdca"><td class="mdescLeft"> </td><td class="mdescRight">Get number of entries/subgroups in the current group, with or without its subgroups. <a href="#a5dc8869a67cea091376c19438586bdca"></a><br/></td></tr>
<tr class="separator:a5dc8869a67cea091376c19438586bdca"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7e4498d31191ce0917b66094203db17f"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_file_config.html#a7e4498d31191ce0917b66094203db17f">HasGroup</a> (const <a class="el" href="classwx_string.html">wxString</a> &strName) const </td></tr>
<tr class="separator:a7e4498d31191ce0917b66094203db17f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6151f556961a8c627e1a9cc50ff37631"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_file_config.html#a6151f556961a8c627e1a9cc50ff37631">HasEntry</a> (const <a class="el" href="classwx_string.html">wxString</a> &strName) const </td></tr>
<tr class="separator:a6151f556961a8c627e1a9cc50ff37631"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a237986fb7e05f7e5404dec1941da308d"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_file_config.html#a237986fb7e05f7e5404dec1941da308d">Flush</a> (bool bCurrentOnly=false)</td></tr>
<tr class="memdesc:a237986fb7e05f7e5404dec1941da308d"><td class="mdescLeft"> </td><td class="mdescRight">Permanently writes all changes (otherwise, they're only written from object's destructor). <a href="#a237986fb7e05f7e5404dec1941da308d"></a><br/></td></tr>
<tr class="separator:a237986fb7e05f7e5404dec1941da308d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a562a1b81e23d70c1921c2139dcf5580d"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_file_config.html#a562a1b81e23d70c1921c2139dcf5580d">RenameEntry</a> (const <a class="el" href="classwx_string.html">wxString</a> &oldName, const <a class="el" href="classwx_string.html">wxString</a> &newName)</td></tr>
<tr class="memdesc:a562a1b81e23d70c1921c2139dcf5580d"><td class="mdescLeft"> </td><td class="mdescRight">Renames an entry in the current group. <a href="#a562a1b81e23d70c1921c2139dcf5580d"></a><br/></td></tr>
<tr class="separator:a562a1b81e23d70c1921c2139dcf5580d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3827f9711a31782a2d4f1ea61e1ea592"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_file_config.html#a3827f9711a31782a2d4f1ea61e1ea592">RenameGroup</a> (const <a class="el" href="classwx_string.html">wxString</a> &oldName, const <a class="el" href="classwx_string.html">wxString</a> &newName)</td></tr>
<tr class="memdesc:a3827f9711a31782a2d4f1ea61e1ea592"><td class="mdescLeft"> </td><td class="mdescRight">Renames a subgroup of the current group. <a href="#a3827f9711a31782a2d4f1ea61e1ea592"></a><br/></td></tr>
<tr class="separator:a3827f9711a31782a2d4f1ea61e1ea592"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a120130d8a59bbdadf510b658b4d45952"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_file_config.html#a120130d8a59bbdadf510b658b4d45952">DeleteEntry</a> (const <a class="el" href="classwx_string.html">wxString</a> &key, bool bGroupIfEmptyAlso=true)</td></tr>
<tr class="memdesc:a120130d8a59bbdadf510b658b4d45952"><td class="mdescLeft"> </td><td class="mdescRight">Deletes the specified entry and the group it belongs to if it was the last key in it and the second parameter is <span class="literal">true</span>. <a href="#a120130d8a59bbdadf510b658b4d45952"></a><br/></td></tr>
<tr class="separator:a120130d8a59bbdadf510b658b4d45952"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aed9b867b366bb656ddd3fdf3108e726d"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_file_config.html#aed9b867b366bb656ddd3fdf3108e726d">DeleteGroup</a> (const <a class="el" href="classwx_string.html">wxString</a> &szKey)</td></tr>
<tr class="memdesc:aed9b867b366bb656ddd3fdf3108e726d"><td class="mdescLeft"> </td><td class="mdescRight">Delete the group (with all subgroups). <a href="#aed9b867b366bb656ddd3fdf3108e726d"></a><br/></td></tr>
<tr class="separator:aed9b867b366bb656ddd3fdf3108e726d"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aeb7cd89ccb242ed30506e63fd79ed82f"><td class="memItemLeft" align="right" valign="top">virtual bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_file_config.html#aeb7cd89ccb242ed30506e63fd79ed82f">DeleteAll</a> ()</td></tr>
<tr class="memdesc:aeb7cd89ccb242ed30506e63fd79ed82f"><td class="mdescLeft"> </td><td class="mdescRight">Delete the whole underlying object (disk file, registry key, ...). <a href="#aeb7cd89ccb242ed30506e63fd79ed82f"></a><br/></td></tr>
<tr class="separator:aeb7cd89ccb242ed30506e63fd79ed82f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classwx_config_base"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classwx_config_base')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classwx_config_base.html">wxConfigBase</a></td></tr>
<tr class="memitem:a7c3ce1f79df2837bc532c0ff551e7bac inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#a7c3ce1f79df2837bc532c0ff551e7bac">wxConfigBase</a> (const <a class="el" href="classwx_string.html">wxString</a> &appName=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, const <a class="el" href="classwx_string.html">wxString</a> &vendorName=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, const <a class="el" href="classwx_string.html">wxString</a> &localFilename=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, const <a class="el" href="classwx_string.html">wxString</a> &globalFilename=<a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a>, long style=0, const <a class="el" href="classwx_m_b_conv.html">wxMBConv</a> &conv=<a class="el" href="classwx_conv_auto.html">wxConvAuto</a>())</td></tr>
<tr class="memdesc:a7c3ce1f79df2837bc532c0ff551e7bac inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">This is the default and only constructor of the <a class="el" href="classwx_config_base.html" title="wxConfigBase defines the basic interface of all config classes.">wxConfigBase</a> class, and derived classes. <a href="#a7c3ce1f79df2837bc532c0ff551e7bac"></a><br/></td></tr>
<tr class="separator:a7c3ce1f79df2837bc532c0ff551e7bac inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a43a12ede8b28e1a62820101105f380d0 inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#a43a12ede8b28e1a62820101105f380d0">~wxConfigBase</a> ()</td></tr>
<tr class="memdesc:a43a12ede8b28e1a62820101105f380d0 inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Empty but ensures that dtor of all derived classes is virtual. <a href="#a43a12ede8b28e1a62820101105f380d0"></a><br/></td></tr>
<tr class="separator:a43a12ede8b28e1a62820101105f380d0 inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2ff94abfcc4907c08f5c326b6c224abd inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#a2ff94abfcc4907c08f5c326b6c224abd">Exists</a> (const <a class="el" href="classwx_string.html">wxString</a> &strName) const </td></tr>
<tr class="separator:a2ff94abfcc4907c08f5c326b6c224abd inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab4035f97557760a9d9976371548324fb inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_config_base.html#a499282208b4b9e90cbfe60de25745bc4">wxConfigBase::EntryType</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#ab4035f97557760a9d9976371548324fb">GetEntryType</a> (const <a class="el" href="classwx_string.html">wxString</a> &name) const </td></tr>
<tr class="memdesc:ab4035f97557760a9d9976371548324fb inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Returns the type of the given entry or <em>Unknown</em> if the entry doesn't exist. <a href="#ab4035f97557760a9d9976371548324fb"></a><br/></td></tr>
<tr class="separator:ab4035f97557760a9d9976371548324fb inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2fc0ab0516143b52a239cd2d37165c24 inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_string.html">wxString</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#a2fc0ab0516143b52a239cd2d37165c24">GetAppName</a> () const </td></tr>
<tr class="memdesc:a2fc0ab0516143b52a239cd2d37165c24 inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Returns the application name. <a href="#a2fc0ab0516143b52a239cd2d37165c24"></a><br/></td></tr>
<tr class="separator:a2fc0ab0516143b52a239cd2d37165c24 inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afd80dbbeaf5767fcebce0b737a294853 inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_string.html">wxString</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#afd80dbbeaf5767fcebce0b737a294853">GetVendorName</a> () const </td></tr>
<tr class="memdesc:afd80dbbeaf5767fcebce0b737a294853 inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Returns the vendor name. <a href="#afd80dbbeaf5767fcebce0b737a294853"></a><br/></td></tr>
<tr class="separator:afd80dbbeaf5767fcebce0b737a294853 inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af89fb6c338f200bec028480ac0f3b1d8 inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#af89fb6c338f200bec028480ac0f3b1d8">Read</a> (const <a class="el" href="classwx_string.html">wxString</a> &key, <a class="el" href="classwx_string.html">wxString</a> *str) const </td></tr>
<tr class="memdesc:af89fb6c338f200bec028480ac0f3b1d8 inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Read a string from the key, returning <span class="literal">true</span> if the value was read. <a href="#af89fb6c338f200bec028480ac0f3b1d8"></a><br/></td></tr>
<tr class="separator:af89fb6c338f200bec028480ac0f3b1d8 inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a93b700301e0b73f1b42f14497f2e6bc7 inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#a93b700301e0b73f1b42f14497f2e6bc7">Read</a> (const <a class="el" href="classwx_string.html">wxString</a> &key, <a class="el" href="classwx_string.html">wxString</a> *str, const <a class="el" href="classwx_string.html">wxString</a> &defaultVal) const </td></tr>
<tr class="memdesc:a93b700301e0b73f1b42f14497f2e6bc7 inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Read a string from the key. <a href="#a93b700301e0b73f1b42f14497f2e6bc7"></a><br/></td></tr>
<tr class="separator:a93b700301e0b73f1b42f14497f2e6bc7 inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8f296b015c56b30ee2c669538c04e88a inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="classwx_string.html">wxString</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#a8f296b015c56b30ee2c669538c04e88a">Read</a> (const <a class="el" href="classwx_string.html">wxString</a> &key, const <a class="el" href="classwx_string.html">wxString</a> &defaultVal) const </td></tr>
<tr class="memdesc:a8f296b015c56b30ee2c669538c04e88a inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Another version of <a class="el" href="classwx_config_base.html#af89fb6c338f200bec028480ac0f3b1d8" title="Read a string from the key, returning true if the value was read.">Read()</a>, returning the string value directly. <a href="#a8f296b015c56b30ee2c669538c04e88a"></a><br/></td></tr>
<tr class="separator:a8f296b015c56b30ee2c669538c04e88a inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa3b9fe04651ff429cb7699cbc60f5251 inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#aa3b9fe04651ff429cb7699cbc60f5251">Read</a> (const <a class="el" href="classwx_string.html">wxString</a> &key, long *l) const </td></tr>
<tr class="memdesc:aa3b9fe04651ff429cb7699cbc60f5251 inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Reads a long value, returning <span class="literal">true</span> if the value was found. <a href="#aa3b9fe04651ff429cb7699cbc60f5251"></a><br/></td></tr>
<tr class="separator:aa3b9fe04651ff429cb7699cbc60f5251 inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aed9f1b5f899b7df40b6e9982f05d1437 inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#aed9f1b5f899b7df40b6e9982f05d1437">Read</a> (const <a class="el" href="classwx_string.html">wxString</a> &key, long *l, long defaultVal) const </td></tr>
<tr class="memdesc:aed9f1b5f899b7df40b6e9982f05d1437 inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Reads a long value, returning <span class="literal">true</span> if the value was found. <a href="#aed9f1b5f899b7df40b6e9982f05d1437"></a><br/></td></tr>
<tr class="separator:aed9f1b5f899b7df40b6e9982f05d1437 inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7b6ed21c1ee59e2c24456fc911da7371 inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#a7b6ed21c1ee59e2c24456fc911da7371">Read</a> (const <a class="el" href="classwx_string.html">wxString</a> &key, double *d) const </td></tr>
<tr class="memdesc:a7b6ed21c1ee59e2c24456fc911da7371 inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Reads a double value, returning <span class="literal">true</span> if the value was found. <a href="#a7b6ed21c1ee59e2c24456fc911da7371"></a><br/></td></tr>
<tr class="separator:a7b6ed21c1ee59e2c24456fc911da7371 inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a455b51e0343a37e843b03adcdc91531d inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#a455b51e0343a37e843b03adcdc91531d">Read</a> (const <a class="el" href="classwx_string.html">wxString</a> &key, double *d, double defaultVal) const </td></tr>
<tr class="memdesc:a455b51e0343a37e843b03adcdc91531d inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Reads a double value, returning <span class="literal">true</span> if the value was found. <a href="#a455b51e0343a37e843b03adcdc91531d"></a><br/></td></tr>
<tr class="separator:a455b51e0343a37e843b03adcdc91531d inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2f775f81568a80314d6b947a8ee06c1a inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#a2f775f81568a80314d6b947a8ee06c1a">Read</a> (const <a class="el" href="classwx_string.html">wxString</a> &key, float *f) const </td></tr>
<tr class="memdesc:a2f775f81568a80314d6b947a8ee06c1a inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Reads a float value, returning <span class="literal">true</span> if the value was found. <a href="#a2f775f81568a80314d6b947a8ee06c1a"></a><br/></td></tr>
<tr class="separator:a2f775f81568a80314d6b947a8ee06c1a inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aebbe5df968baea47a2722f5617c3e6f3 inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#aebbe5df968baea47a2722f5617c3e6f3">Read</a> (const <a class="el" href="classwx_string.html">wxString</a> &key, float *f, float defaultVal) const </td></tr>
<tr class="memdesc:aebbe5df968baea47a2722f5617c3e6f3 inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Reads a float value, returning <span class="literal">true</span> if the value was found. <a href="#aebbe5df968baea47a2722f5617c3e6f3"></a><br/></td></tr>
<tr class="separator:aebbe5df968baea47a2722f5617c3e6f3 inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae5a5e4486d889d3ba3d738f376ddd4fc inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#ae5a5e4486d889d3ba3d738f376ddd4fc">Read</a> (const <a class="el" href="classwx_string.html">wxString</a> &key, bool *b) const </td></tr>
<tr class="memdesc:ae5a5e4486d889d3ba3d738f376ddd4fc inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Reads a boolean value, returning <span class="literal">true</span> if the value was found. <a href="#ae5a5e4486d889d3ba3d738f376ddd4fc"></a><br/></td></tr>
<tr class="separator:ae5a5e4486d889d3ba3d738f376ddd4fc inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:acd9d5f95b52a1cf59f63d0ba39879bb0 inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#acd9d5f95b52a1cf59f63d0ba39879bb0">Read</a> (const <a class="el" href="classwx_string.html">wxString</a> &key, bool *d, bool defaultVal) const </td></tr>
<tr class="memdesc:acd9d5f95b52a1cf59f63d0ba39879bb0 inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Reads a boolean value, returning <span class="literal">true</span> if the value was found. <a href="#acd9d5f95b52a1cf59f63d0ba39879bb0"></a><br/></td></tr>
<tr class="separator:acd9d5f95b52a1cf59f63d0ba39879bb0 inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aeb402d8571388d67bf85d5abd0dd6641 inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#aeb402d8571388d67bf85d5abd0dd6641">Read</a> (const <a class="el" href="classwx_string.html">wxString</a> &key, <a class="el" href="classwx_memory_buffer.html">wxMemoryBuffer</a> *buf) const </td></tr>
<tr class="memdesc:aeb402d8571388d67bf85d5abd0dd6641 inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Reads a binary block, returning <span class="literal">true</span> if the value was found. <a href="#aeb402d8571388d67bf85d5abd0dd6641"></a><br/></td></tr>
<tr class="separator:aeb402d8571388d67bf85d5abd0dd6641 inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a453771fa3ba928f72d9ef6975c2e76de inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#a453771fa3ba928f72d9ef6975c2e76de">Read</a> (const <a class="el" href="classwx_string.html">wxString</a> &key, T *value) const </td></tr>
<tr class="memdesc:a453771fa3ba928f72d9ef6975c2e76de inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Reads a value of type T, for which function <a class="el" href="group__group__funcmacro__misc.html#ga598ae7504c6436af325490b41f4b5e90" title="Converts string to a wxColour best represented by the given string.">wxFromString()</a> is defined, returning <span class="literal">true</span> if the value was found. <a href="#a453771fa3ba928f72d9ef6975c2e76de"></a><br/></td></tr>
<tr class="separator:a453771fa3ba928f72d9ef6975c2e76de inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac1206cb2c544b23fa9d2c983802114b5 inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#ac1206cb2c544b23fa9d2c983802114b5">Read</a> (const <a class="el" href="classwx_string.html">wxString</a> &key, T *value, const T &defaultVal) const </td></tr>
<tr class="memdesc:ac1206cb2c544b23fa9d2c983802114b5 inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Reads a value of type T, for which function <a class="el" href="group__group__funcmacro__misc.html#ga598ae7504c6436af325490b41f4b5e90" title="Converts string to a wxColour best represented by the given string.">wxFromString()</a> is defined, returning <span class="literal">true</span> if the value was found. <a href="#ac1206cb2c544b23fa9d2c983802114b5"></a><br/></td></tr>
<tr class="separator:ac1206cb2c544b23fa9d2c983802114b5 inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6c933c93b00ac59ffcf16f5a2e3c47a9 inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#a6c933c93b00ac59ffcf16f5a2e3c47a9">ReadBool</a> (const <a class="el" href="classwx_string.html">wxString</a> &key, bool defaultVal) const </td></tr>
<tr class="memdesc:a6c933c93b00ac59ffcf16f5a2e3c47a9 inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Reads a bool value from the key and returns it. <a href="#a6c933c93b00ac59ffcf16f5a2e3c47a9"></a><br/></td></tr>
<tr class="separator:a6c933c93b00ac59ffcf16f5a2e3c47a9 inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a82413d25fca2d006def607f14b6d45f4 inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">double </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#a82413d25fca2d006def607f14b6d45f4">ReadDouble</a> (const <a class="el" href="classwx_string.html">wxString</a> &key, double defaultVal) const </td></tr>
<tr class="memdesc:a82413d25fca2d006def607f14b6d45f4 inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Reads a double value from the key and returns it. <a href="#a82413d25fca2d006def607f14b6d45f4"></a><br/></td></tr>
<tr class="separator:a82413d25fca2d006def607f14b6d45f4 inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab876635fe7cefe7eae38a1ef330a4c49 inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">long </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#ab876635fe7cefe7eae38a1ef330a4c49">ReadLong</a> (const <a class="el" href="classwx_string.html">wxString</a> &key, long defaultVal) const </td></tr>
<tr class="memdesc:ab876635fe7cefe7eae38a1ef330a4c49 inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Reads a long value from the key and returns it. <a href="#ab876635fe7cefe7eae38a1ef330a4c49"></a><br/></td></tr>
<tr class="separator:ab876635fe7cefe7eae38a1ef330a4c49 inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac88afa67847dcf8a962e847dfaf5972a inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">T </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#ac88afa67847dcf8a962e847dfaf5972a">ReadObject</a> (const <a class="el" href="classwx_string.html">wxString</a> &key, T const &defaultVal) const </td></tr>
<tr class="memdesc:ac88afa67847dcf8a962e847dfaf5972a inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Reads a value of type T (for which the function <a class="el" href="group__group__funcmacro__misc.html#ga598ae7504c6436af325490b41f4b5e90" title="Converts string to a wxColour best represented by the given string.">wxFromString()</a> must be defined) from the key and returns it. <a href="#ac88afa67847dcf8a962e847dfaf5972a"></a><br/></td></tr>
<tr class="separator:ac88afa67847dcf8a962e847dfaf5972a inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ace24f1478e71ac309ecf1d9273f19ce3 inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#ace24f1478e71ac309ecf1d9273f19ce3">Write</a> (const <a class="el" href="classwx_string.html">wxString</a> &key, const <a class="el" href="classwx_string.html">wxString</a> &value)</td></tr>
<tr class="memdesc:ace24f1478e71ac309ecf1d9273f19ce3 inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Writes the <a class="el" href="classwx_string.html" title="String class for passing textual data to or receiving it from wxWidgets.">wxString</a> value to the config file and returns <span class="literal">true</span> on success. <a href="#ace24f1478e71ac309ecf1d9273f19ce3"></a><br/></td></tr>
<tr class="separator:ace24f1478e71ac309ecf1d9273f19ce3 inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a052e7e5df90589f8094f860a9bdfd8a8 inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#a052e7e5df90589f8094f860a9bdfd8a8">Write</a> (const <a class="el" href="classwx_string.html">wxString</a> &key, long value)</td></tr>
<tr class="memdesc:a052e7e5df90589f8094f860a9bdfd8a8 inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Writes the long value to the config file and returns <span class="literal">true</span> on success. <a href="#a052e7e5df90589f8094f860a9bdfd8a8"></a><br/></td></tr>
<tr class="separator:a052e7e5df90589f8094f860a9bdfd8a8 inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a108d7427200466a240f8ea835e74db7b inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#a108d7427200466a240f8ea835e74db7b">Write</a> (const <a class="el" href="classwx_string.html">wxString</a> &key, double value)</td></tr>
<tr class="memdesc:a108d7427200466a240f8ea835e74db7b inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Writes the double value to the config file and returns <span class="literal">true</span> on success. <a href="#a108d7427200466a240f8ea835e74db7b"></a><br/></td></tr>
<tr class="separator:a108d7427200466a240f8ea835e74db7b inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a97465083477038dc7d01e363c511f6cd inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#a97465083477038dc7d01e363c511f6cd">Write</a> (const <a class="el" href="classwx_string.html">wxString</a> &key, bool value)</td></tr>
<tr class="memdesc:a97465083477038dc7d01e363c511f6cd inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Writes the bool value to the config file and returns <span class="literal">true</span> on success. <a href="#a97465083477038dc7d01e363c511f6cd"></a><br/></td></tr>
<tr class="separator:a97465083477038dc7d01e363c511f6cd inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a83efe80538c9f3e4056ae6d44d362f49 inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#a83efe80538c9f3e4056ae6d44d362f49">Write</a> (const <a class="el" href="classwx_string.html">wxString</a> &key, const <a class="el" href="classwx_memory_buffer.html">wxMemoryBuffer</a> &buf)</td></tr>
<tr class="memdesc:a83efe80538c9f3e4056ae6d44d362f49 inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Writes the <a class="el" href="classwx_memory_buffer.html" title="A wxMemoryBuffer is a useful data structure for storing arbitrary sized blocks of memory...">wxMemoryBuffer</a> value to the config file and returns <span class="literal">true</span> on success. <a href="#a83efe80538c9f3e4056ae6d44d362f49"></a><br/></td></tr>
<tr class="separator:a83efe80538c9f3e4056ae6d44d362f49 inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9ac693bd370a81d7fd0cad255869a041 inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#a9ac693bd370a81d7fd0cad255869a041">Write</a> (const <a class="el" href="classwx_string.html">wxString</a> &key, T const &buf)</td></tr>
<tr class="memdesc:a9ac693bd370a81d7fd0cad255869a041 inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Writes the specified value to the config file and returns <span class="literal">true</span> on success. <a href="#a9ac693bd370a81d7fd0cad255869a041"></a><br/></td></tr>
<tr class="separator:a9ac693bd370a81d7fd0cad255869a041 inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1d8cbd33d9d85caeea77de753cb25548 inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#a1d8cbd33d9d85caeea77de753cb25548">IsExpandingEnvVars</a> () const </td></tr>
<tr class="memdesc:a1d8cbd33d9d85caeea77de753cb25548 inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if we are expanding environment variables in key values. <a href="#a1d8cbd33d9d85caeea77de753cb25548"></a><br/></td></tr>
<tr class="separator:a1d8cbd33d9d85caeea77de753cb25548 inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab1bc59054ac75ae688c61cd767ba6083 inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#ab1bc59054ac75ae688c61cd767ba6083">IsRecordingDefaults</a> () const </td></tr>
<tr class="memdesc:ab1bc59054ac75ae688c61cd767ba6083 inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if we are writing defaults back to the config file. <a href="#ab1bc59054ac75ae688c61cd767ba6083"></a><br/></td></tr>
<tr class="separator:ab1bc59054ac75ae688c61cd767ba6083 inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3a8c651d2bdde14e6248b0cd85062476 inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#a3a8c651d2bdde14e6248b0cd85062476">SetExpandEnvVars</a> (bool bDoIt=true)</td></tr>
<tr class="memdesc:a3a8c651d2bdde14e6248b0cd85062476 inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Determine whether we wish to expand environment variables in key values. <a href="#a3a8c651d2bdde14e6248b0cd85062476"></a><br/></td></tr>
<tr class="separator:a3a8c651d2bdde14e6248b0cd85062476 inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a80bff71cc742251419ba499ce7b4da3c inherit pub_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#a80bff71cc742251419ba499ce7b4da3c">SetRecordDefaults</a> (bool bDoIt=true)</td></tr>
<tr class="memdesc:a80bff71cc742251419ba499ce7b4da3c inherit pub_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Sets whether defaults are recorded to the config file whenever an attempt to read the value which is not present in it is done. <a href="#a80bff71cc742251419ba499ce7b4da3c"></a><br/></td></tr>
<tr class="separator:a80bff71cc742251419ba499ce7b4da3c inherit pub_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_methods_classwx_object"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classwx_object')"><img src="closed.png" alt="-"/> Public Member Functions inherited from <a class="el" href="classwx_object.html">wxObject</a></td></tr>
<tr class="memitem:acaa378363a28af421ab56ad7b46eadf0 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#acaa378363a28af421ab56ad7b46eadf0">wxObject</a> ()</td></tr>
<tr class="memdesc:acaa378363a28af421ab56ad7b46eadf0 inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Default ctor; initializes to <span class="literal">NULL</span> the internal reference data. <a href="#acaa378363a28af421ab56ad7b46eadf0"></a><br/></td></tr>
<tr class="separator:acaa378363a28af421ab56ad7b46eadf0 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4721b4dc9b7aff0f30904ba2ea3954cf inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top"> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a4721b4dc9b7aff0f30904ba2ea3954cf">wxObject</a> (const <a class="el" href="classwx_object.html">wxObject</a> &other)</td></tr>
<tr class="memdesc:a4721b4dc9b7aff0f30904ba2ea3954cf inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Copy ctor. <a href="#a4721b4dc9b7aff0f30904ba2ea3954cf"></a><br/></td></tr>
<tr class="separator:a4721b4dc9b7aff0f30904ba2ea3954cf inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2a51aa8bfbab47ca2f051bcf84b3f35b inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">virtual </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a2a51aa8bfbab47ca2f051bcf84b3f35b">~wxObject</a> ()</td></tr>
<tr class="memdesc:a2a51aa8bfbab47ca2f051bcf84b3f35b inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Destructor. <a href="#a2a51aa8bfbab47ca2f051bcf84b3f35b"></a><br/></td></tr>
<tr class="separator:a2a51aa8bfbab47ca2f051bcf84b3f35b inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab3a0c6f723cbaddb47be4e8dd98cc8e2 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_class_info.html">wxClassInfo</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#ab3a0c6f723cbaddb47be4e8dd98cc8e2">GetClassInfo</a> () const </td></tr>
<tr class="memdesc:ab3a0c6f723cbaddb47be4e8dd98cc8e2 inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">This virtual function is redefined for every class that requires run-time type information, when using the <a class="el" href="group__group__funcmacro__rtti.html#ga20465fc7e022e29a5dacfad46e152e75" title="Used inside a class declaration to declare that the class should be made known to the class hierarchy...">wxDECLARE_CLASS</a> macro (or similar). <a href="#ab3a0c6f723cbaddb47be4e8dd98cc8e2"></a><br/></td></tr>
<tr class="separator:ab3a0c6f723cbaddb47be4e8dd98cc8e2 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aabdb4fc957226544a8408167844e4f42 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_object_ref_data.html">wxObjectRefData</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#aabdb4fc957226544a8408167844e4f42">GetRefData</a> () const </td></tr>
<tr class="memdesc:aabdb4fc957226544a8408167844e4f42 inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Returns the <a class="el" href="classwx_object.html#a9e31954530a0abd54982effc443ed2b8" title="Pointer to an object which is the object's reference-counted data.">wxObject::m_refData</a> pointer, i.e. the data referenced by this object. <a href="#aabdb4fc957226544a8408167844e4f42"></a><br/></td></tr>
<tr class="separator:aabdb4fc957226544a8408167844e4f42 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af40d580385cf4f8112fae7713404b01e inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#af40d580385cf4f8112fae7713404b01e">IsKindOf</a> (const <a class="el" href="classwx_class_info.html">wxClassInfo</a> *info) const </td></tr>
<tr class="memdesc:af40d580385cf4f8112fae7713404b01e inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Determines whether this class is a subclass of (or the same class as) the given class. <a href="#af40d580385cf4f8112fae7713404b01e"></a><br/></td></tr>
<tr class="separator:af40d580385cf4f8112fae7713404b01e inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a80a1a3fda7b14396a9ddd3d7a46a88bd inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">bool </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a80a1a3fda7b14396a9ddd3d7a46a88bd">IsSameAs</a> (const <a class="el" href="classwx_object.html">wxObject</a> &obj) const </td></tr>
<tr class="memdesc:a80a1a3fda7b14396a9ddd3d7a46a88bd inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Returns <span class="literal">true</span> if this object has the same data pointer as <em>obj</em>. <a href="#a80a1a3fda7b14396a9ddd3d7a46a88bd"></a><br/></td></tr>
<tr class="separator:a80a1a3fda7b14396a9ddd3d7a46a88bd inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a2f6f1aa51fe9fc2b1415ca4211a90e9e inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a2f6f1aa51fe9fc2b1415ca4211a90e9e">Ref</a> (const <a class="el" href="classwx_object.html">wxObject</a> &clone)</td></tr>
<tr class="memdesc:a2f6f1aa51fe9fc2b1415ca4211a90e9e inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Makes this object refer to the data in <em>clone</em>. <a href="#a2f6f1aa51fe9fc2b1415ca4211a90e9e"></a><br/></td></tr>
<tr class="separator:a2f6f1aa51fe9fc2b1415ca4211a90e9e inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afab780710f2adc1bb33310e27590140b inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#afab780710f2adc1bb33310e27590140b">SetRefData</a> (<a class="el" href="classwx_object_ref_data.html">wxObjectRefData</a> *data)</td></tr>
<tr class="memdesc:afab780710f2adc1bb33310e27590140b inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Sets the <a class="el" href="classwx_object.html#a9e31954530a0abd54982effc443ed2b8" title="Pointer to an object which is the object's reference-counted data.">wxObject::m_refData</a> pointer. <a href="#afab780710f2adc1bb33310e27590140b"></a><br/></td></tr>
<tr class="separator:afab780710f2adc1bb33310e27590140b inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af51efc6b1ae632fc7f0cd7ebbce9fa36 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#af51efc6b1ae632fc7f0cd7ebbce9fa36">UnRef</a> ()</td></tr>
<tr class="memdesc:af51efc6b1ae632fc7f0cd7ebbce9fa36 inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Decrements the reference count in the associated data, and if it is zero, deletes the data. <a href="#af51efc6b1ae632fc7f0cd7ebbce9fa36"></a><br/></td></tr>
<tr class="separator:af51efc6b1ae632fc7f0cd7ebbce9fa36 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a74b40e42d19a4b9e9bec0b57d62a5725 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a74b40e42d19a4b9e9bec0b57d62a5725">UnShare</a> ()</td></tr>
<tr class="memdesc:a74b40e42d19a4b9e9bec0b57d62a5725 inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">This is the same of <a class="el" href="classwx_object.html#a60204063f3cc3aa2fa1c7ff5bda9eb13" title="Ensure that this object's data is not shared with any other object.">AllocExclusive()</a> but this method is public. <a href="#a74b40e42d19a4b9e9bec0b57d62a5725"></a><br/></td></tr>
<tr class="separator:a74b40e42d19a4b9e9bec0b57d62a5725 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a07b8f34f5afc5743195c5fed052f55d3 inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a07b8f34f5afc5743195c5fed052f55d3">operator delete</a> (void *buf)</td></tr>
<tr class="memdesc:a07b8f34f5afc5743195c5fed052f55d3 inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">The <em>delete</em> operator is defined for debugging versions of the library only, when the identifier <code><b>WXDEBUG</b></code> is defined. <a href="#a07b8f34f5afc5743195c5fed052f55d3"></a><br/></td></tr>
<tr class="separator:a07b8f34f5afc5743195c5fed052f55d3 inherit pub_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a96fa423a1dbc212c8227a5d83825971f inherit pub_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a96fa423a1dbc212c8227a5d83825971f">operator new</a> (size_t size, const <a class="el" href="classwx_string.html">wxString</a> &filename=NULL, int lineNum=0)</td></tr>
<tr class="memdesc:a96fa423a1dbc212c8227a5d83825971f inherit pub_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">The <em>new</em> operator is defined for debugging versions of the library only, when the identifier <code><b>WXDEBUG</b></code> is defined. <a href="#a96fa423a1dbc212c8227a5d83825971f"></a><br/></td></tr>
<tr class="separator:a96fa423a1dbc212c8227a5d83825971f inherit pub_methods_classwx_object"><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:af67ee0d35efdc5486c09682e4385dfb1"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_file_name.html">wxFileName</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_file_config.html#af67ee0d35efdc5486c09682e4385dfb1">GetGlobalFile</a> (const <a class="el" href="classwx_string.html">wxString</a> &basename)</td></tr>
<tr class="memdesc:af67ee0d35efdc5486c09682e4385dfb1"><td class="mdescLeft"> </td><td class="mdescRight">Return the full path to the file which would be used by <a class="el" href="classwx_file_config.html" title="wxFileConfig implements wxConfigBase interface for storing and retrieving configuration information u...">wxFileConfig</a> as global, system-wide, file if it were constructed with <em>basename</em> as "global filename" parameter in the constructor. <a href="#af67ee0d35efdc5486c09682e4385dfb1"></a><br/></td></tr>
<tr class="separator:af67ee0d35efdc5486c09682e4385dfb1"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a479f242f67dca8149dfbd7e9b6394fe9"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_file_name.html">wxFileName</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_file_config.html#a479f242f67dca8149dfbd7e9b6394fe9">GetLocalFile</a> (const <a class="el" href="classwx_string.html">wxString</a> &basename, int style=0)</td></tr>
<tr class="memdesc:a479f242f67dca8149dfbd7e9b6394fe9"><td class="mdescLeft"> </td><td class="mdescRight">Return the full path to the file which would be used by <a class="el" href="classwx_file_config.html" title="wxFileConfig implements wxConfigBase interface for storing and retrieving configuration information u...">wxFileConfig</a> as local, user-specific, file if it were constructed with <em>basename</em> as "local filename" parameter in the constructor. <a href="#a479f242f67dca8149dfbd7e9b6394fe9"></a><br/></td></tr>
<tr class="separator:a479f242f67dca8149dfbd7e9b6394fe9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae70471e1167791f26bdc88175476674f"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_string.html">wxString</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_file_config.html#ae70471e1167791f26bdc88175476674f">GetGlobalFileName</a> (const <a class="el" href="classwx_string.html">wxString</a> &szFile)</td></tr>
<tr class="separator:ae70471e1167791f26bdc88175476674f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a50ecc124ab06aa5e6461e70f0673b06a"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_string.html">wxString</a> </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_file_config.html#a50ecc124ab06aa5e6461e70f0673b06a">GetLocalFileName</a> (const <a class="el" href="classwx_string.html">wxString</a> &szFile, int style=0)</td></tr>
<tr class="separator:a50ecc124ab06aa5e6461e70f0673b06a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pub_static_methods_classwx_config_base"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_classwx_config_base')"><img src="closed.png" alt="-"/> Static Public Member Functions inherited from <a class="el" href="classwx_config_base.html">wxConfigBase</a></td></tr>
<tr class="memitem:aa7d633935adabe1bf11b5a028f8b3355 inherit pub_static_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_config_base.html">wxConfigBase</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#aa7d633935adabe1bf11b5a028f8b3355">Create</a> ()</td></tr>
<tr class="memdesc:aa7d633935adabe1bf11b5a028f8b3355 inherit pub_static_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Create a new config object and sets it as the current one. <a href="#aa7d633935adabe1bf11b5a028f8b3355"></a><br/></td></tr>
<tr class="separator:aa7d633935adabe1bf11b5a028f8b3355 inherit pub_static_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0e8ad0cb0c5b374a99b99ea6212e496b inherit pub_static_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">static void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#a0e8ad0cb0c5b374a99b99ea6212e496b">DontCreateOnDemand</a> ()</td></tr>
<tr class="memdesc:a0e8ad0cb0c5b374a99b99ea6212e496b inherit pub_static_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Calling this function will prevent <em><a class="el" href="classwx_config_base.html#a61bfb04c1c133190b3e851b252ed1c60" title="Get the current config object.">Get()</a></em> from automatically creating a new config object if the current one is <span class="literal">NULL</span>. <a href="#a0e8ad0cb0c5b374a99b99ea6212e496b"></a><br/></td></tr>
<tr class="separator:a0e8ad0cb0c5b374a99b99ea6212e496b inherit pub_static_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a61bfb04c1c133190b3e851b252ed1c60 inherit pub_static_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_config_base.html">wxConfigBase</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#a61bfb04c1c133190b3e851b252ed1c60">Get</a> (bool CreateOnDemand=true)</td></tr>
<tr class="memdesc:a61bfb04c1c133190b3e851b252ed1c60 inherit pub_static_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Get the current config object. <a href="#a61bfb04c1c133190b3e851b252ed1c60"></a><br/></td></tr>
<tr class="separator:a61bfb04c1c133190b3e851b252ed1c60 inherit pub_static_methods_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a8e2ca739326f32379d6816522a5d1907 inherit pub_static_methods_classwx_config_base"><td class="memItemLeft" align="right" valign="top">static <a class="el" href="classwx_config_base.html">wxConfigBase</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#a8e2ca739326f32379d6816522a5d1907">Set</a> (<a class="el" href="classwx_config_base.html">wxConfigBase</a> *pConfig)</td></tr>
<tr class="memdesc:a8e2ca739326f32379d6816522a5d1907 inherit pub_static_methods_classwx_config_base"><td class="mdescLeft"> </td><td class="mdescRight">Sets the config object as the current one, returns the pointer to the previous current object (both the parameter and returned value may be <span class="literal">NULL</span>). <a href="#a8e2ca739326f32379d6816522a5d1907"></a><br/></td></tr>
<tr class="separator:a8e2ca739326f32379d6816522a5d1907 inherit pub_static_methods_classwx_config_base"><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_classwx_config_base"><td colspan="2" onclick="javascript:toggleInherit('pub_types_classwx_config_base')"><img src="closed.png" alt="-"/> Public Types inherited from <a class="el" href="classwx_config_base.html">wxConfigBase</a></td></tr>
<tr class="memitem:a499282208b4b9e90cbfe60de25745bc4 inherit pub_types_classwx_config_base"><td class="memItemLeft" align="right" valign="top">enum  </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_config_base.html#a499282208b4b9e90cbfe60de25745bc4">EntryType</a> { <br/>
  <a class="el" href="classwx_config_base.html#a499282208b4b9e90cbfe60de25745bc4a186e69ade61db5ba7e5fc2366d2388fc">Type_Unknown</a>,
<br/>
  <a class="el" href="classwx_config_base.html#a499282208b4b9e90cbfe60de25745bc4afeb4cd8ae582520fd2d45ec35b316d0a">Type_String</a>,
<br/>
  <a class="el" href="classwx_config_base.html#a499282208b4b9e90cbfe60de25745bc4a5338e90a8c51020109928f3177c06caf">Type_Boolean</a>,
<br/>
  <a class="el" href="classwx_config_base.html#a499282208b4b9e90cbfe60de25745bc4abf7985582695bbed6da7d2de5b22b6e8">Type_Integer</a>,
<br/>
  <a class="el" href="classwx_config_base.html#a499282208b4b9e90cbfe60de25745bc4af1cafe0a03c8c929511258c31ea138cb">Type_Float</a>
<br/>
}</td></tr>
<tr class="separator:a499282208b4b9e90cbfe60de25745bc4 inherit pub_types_classwx_config_base"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_methods_classwx_object"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_classwx_object')"><img src="closed.png" alt="-"/> Protected Member Functions inherited from <a class="el" href="classwx_object.html">wxObject</a></td></tr>
<tr class="memitem:a60204063f3cc3aa2fa1c7ff5bda9eb13 inherit pro_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">void </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a60204063f3cc3aa2fa1c7ff5bda9eb13">AllocExclusive</a> ()</td></tr>
<tr class="memdesc:a60204063f3cc3aa2fa1c7ff5bda9eb13 inherit pro_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Ensure that this object's data is not shared with any other object. <a href="#a60204063f3cc3aa2fa1c7ff5bda9eb13"></a><br/></td></tr>
<tr class="separator:a60204063f3cc3aa2fa1c7ff5bda9eb13 inherit pro_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a95c6a5e4e1e03ff23c7b9efe4cff0c1a inherit pro_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_object_ref_data.html">wxObjectRefData</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a95c6a5e4e1e03ff23c7b9efe4cff0c1a">CreateRefData</a> () const </td></tr>
<tr class="memdesc:a95c6a5e4e1e03ff23c7b9efe4cff0c1a inherit pro_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Creates a new instance of the wxObjectRefData-derived class specific to this object and returns it. <a href="#a95c6a5e4e1e03ff23c7b9efe4cff0c1a"></a><br/></td></tr>
<tr class="separator:a95c6a5e4e1e03ff23c7b9efe4cff0c1a inherit pro_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1d39f1d3650fe0982c9a1abe7f9fe7b7 inherit pro_methods_classwx_object"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="classwx_object_ref_data.html">wxObjectRefData</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a1d39f1d3650fe0982c9a1abe7f9fe7b7">CloneRefData</a> (const <a class="el" href="classwx_object_ref_data.html">wxObjectRefData</a> *data) const </td></tr>
<tr class="memdesc:a1d39f1d3650fe0982c9a1abe7f9fe7b7 inherit pro_methods_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Creates a new instance of the wxObjectRefData-derived class specific to this object and initializes it copying <em>data</em>. <a href="#a1d39f1d3650fe0982c9a1abe7f9fe7b7"></a><br/></td></tr>
<tr class="separator:a1d39f1d3650fe0982c9a1abe7f9fe7b7 inherit pro_methods_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="inherit_header pro_attribs_classwx_object"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_classwx_object')"><img src="closed.png" alt="-"/> Protected Attributes inherited from <a class="el" href="classwx_object.html">wxObject</a></td></tr>
<tr class="memitem:a9e31954530a0abd54982effc443ed2b8 inherit pro_attribs_classwx_object"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classwx_object_ref_data.html">wxObjectRefData</a> * </td><td class="memItemRight" valign="bottom"><a class="el" href="classwx_object.html#a9e31954530a0abd54982effc443ed2b8">m_refData</a></td></tr>
<tr class="memdesc:a9e31954530a0abd54982effc443ed2b8 inherit pro_attribs_classwx_object"><td class="mdescLeft"> </td><td class="mdescRight">Pointer to an object which is the object's reference-counted data. <a href="#a9e31954530a0abd54982effc443ed2b8"></a><br/></td></tr>
<tr class="separator:a9e31954530a0abd54982effc443ed2b8 inherit pro_attribs_classwx_object"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<h2 class="groupheader">Constructor & Destructor Documentation</h2>
<a class="anchor" id="a43f81c0b303155e84cecded7fc2f9a30"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">wxFileConfig::wxFileConfig </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>appName</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>vendorName</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>localFilename</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>globalFilename</em> = <code><a class="el" href="interface_2wx_2string_8h.html#a9a321d587166a30017b608dd2d234033">wxEmptyString</a></code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">long </td>
<td class="paramname"><em>style</em> = <code><a class="el" href="interface_2wx_2config_8h.html#abed82baf7f470b522273a3e37c24c600a2a23b2ec7fd6b2169ae2536cbce3ff64">wxCONFIG_USE_LOCAL_FILE</a>|<a class="el" href="interface_2wx_2config_8h.html#abed82baf7f470b522273a3e37c24c600a85c4768e6a0c1989e9251c7405c546bc">wxCONFIG_USE_GLOBAL_FILE</a></code>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_m_b_conv.html">wxMBConv</a> & </td>
<td class="paramname"><em>conv</em> = <code><a class="el" href="classwx_conv_auto.html">wxConvAuto</a>()</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Constructor allowing to choose the file names to use. </p>
<p>If <em>localFilename</em> and/or <em>globalFilename</em> are explicitly specified, they are used as the names of the user and system-wide configuration files (the latter is only read by the program while the former is read from and written to). Otherwise the behaviour depends on <em>style</em> parameter. If it includes <a class="el" href="interface_2wx_2config_8h.html#abed82baf7f470b522273a3e37c24c600a2a23b2ec7fd6b2169ae2536cbce3ff64">wxCONFIG_USE_LOCAL_FILE</a>, then the local file name is constructed from the information in <em>appName</em> and <em>vendorName</em> arguments in a system-dependent way. If <a class="el" href="interface_2wx_2config_8h.html#abed82baf7f470b522273a3e37c24c600a85c4768e6a0c1989e9251c7405c546bc">wxCONFIG_USE_GLOBAL_FILE</a> is not specified at all (and <em>globalFilename</em> is empty) then the system-wide file is not used at all. Otherwise its name and path are also constructed in the way appropriate for the current platform from the application and vendor names. </p>
</div>
</div>
<a class="anchor" id="a98f3c3d151840d9e7dc821586c4c07e5"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">wxFileConfig::wxFileConfig </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classwx_input_stream.html">wxInputStream</a> & </td>
<td class="paramname"><em>is</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_m_b_conv.html">wxMBConv</a> & </td>
<td class="paramname"><em>conv</em> = <code><a class="el" href="classwx_conv_auto.html">wxConvAuto</a>()</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Read the config data from the specified stream instead of the associated file, as usual. </p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_file_config.html#a6220fdc0f07a7e36e559e58d29965337" title="Saves all config data to the given stream, returns true if data was saved successfully or false on er...">Save()</a> </dd></dl>
</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="aeb7cd89ccb242ed30506e63fd79ed82f"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool wxFileConfig::DeleteAll </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">
<p>Delete the whole underlying object (disk file, registry key, ...). </p>
<p>Primarily for use by uninstallation routine. </p>
<p>Implements <a class="el" href="classwx_config_base.html#af2dd5ec6b56f89decf0e96b057c4846f">wxConfigBase</a>.</p>
</div>
</div>
<a class="anchor" id="a120130d8a59bbdadf510b658b4d45952"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool wxFileConfig::DeleteEntry </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</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>bDeleteGroupIfEmpty</em> = <code>true</code> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Deletes the specified entry and the group it belongs to if it was the last key in it and the second parameter is <span class="literal">true</span>. </p>
<p>Implements <a class="el" href="classwx_config_base.html#a4032a0432b4a7f956ec30dfc4f4b8593">wxConfigBase</a>.</p>
</div>
</div>
<a class="anchor" id="aed9b867b366bb656ddd3fdf3108e726d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool wxFileConfig::DeleteGroup </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</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">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Delete the group (with all subgroups). </p>
<p>If the current path is under the group being deleted it is changed to its deepest still existing component. E.g. if the current path is <code>"/A/B/C/D"</code> and the group <code>C</code> is deleted, the path becomes <code>"/A/B"</code>. </p>
<p>Implements <a class="el" href="classwx_config_base.html#ac66bcb140f09c8cb522d3117aa1aa0e7">wxConfigBase</a>.</p>
</div>
</div>
<a class="anchor" id="a237986fb7e05f7e5404dec1941da308d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool wxFileConfig::Flush </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>bCurrentOnly</em> = <code>false</code></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">
<p>Permanently writes all changes (otherwise, they're only written from object's destructor). </p>
<p>Implements <a class="el" href="classwx_config_base.html#a0b8cfc81de4d2534e8ab980b0fc6b9b8">wxConfigBase</a>.</p>
</div>
</div>
<a class="anchor" id="abccd0ec08228de5d433601eca2781b94"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool wxFileConfig::GetFirstEntry </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>str</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">long & </td>
<td class="paramname"><em>index</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the first entry. </p>
<p><b>wxPerl Note:</b> In wxPerl this method takes no parameters and returns a 3-element list (continue_flag, string, index_for_getnextentry). </p>
<p>Implements <a class="el" href="classwx_config_base.html#a1f8338dd47972d196c6475e7e1140ae7">wxConfigBase</a>.</p>
</div>
</div>
<a class="anchor" id="aecbc6a538ba2b9ad41620fbc00ef2a12"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool wxFileConfig::GetFirstGroup </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>str</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">long & </td>
<td class="paramname"><em>index</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the first group. </p>
<p><b>wxPerl Note:</b> In wxPerl this method takes no parameters and returns a 3-element list (continue_flag, string, index_for_getnextentry). </p>
<p>Implements <a class="el" href="classwx_config_base.html#af111cb376665bd1b7fc77ae20d985a6d">wxConfigBase</a>.</p>
</div>
</div>
<a class="anchor" id="af67ee0d35efdc5486c09682e4385dfb1"></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="classwx_file_name.html">wxFileName</a> wxFileConfig::GetGlobalFile </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>basename</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">
<p>Return the full path to the file which would be used by <a class="el" href="classwx_file_config.html" title="wxFileConfig implements wxConfigBase interface for storing and retrieving configuration information u...">wxFileConfig</a> as global, system-wide, file if it were constructed with <em>basename</em> as "global filename" parameter in the constructor. </p>
<p>Notice that this function cannot be used if <em>basename</em> is already a full path name. </p>
</div>
</div>
<a class="anchor" id="ae70471e1167791f26bdc88175476674f"></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="classwx_string.html">wxString</a> wxFileConfig::GetGlobalFileName </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>szFile</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="a479f242f67dca8149dfbd7e9b6394fe9"></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="classwx_file_name.html">wxFileName</a> wxFileConfig::GetLocalFile </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>basename</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>style</em> = <code>0</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">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Return the full path to the file which would be used by <a class="el" href="classwx_file_config.html" title="wxFileConfig implements wxConfigBase interface for storing and retrieving configuration information u...">wxFileConfig</a> as local, user-specific, file if it were constructed with <em>basename</em> as "local filename" parameter in the constructor. </p>
<p><em>style</em> has the same meaning as in <a class="el" href="classwx_config_base.html#a7c3ce1f79df2837bc532c0ff551e7bac">wxConfig constructor</a> and can contain any combination of styles but only wxCONFIG_USE_SUBDIR bit is examined by this function.</p>
<p>Notice that this function cannot be used if <em>basename</em> is already a full path name. </p>
</div>
</div>
<a class="anchor" id="a50ecc124ab06aa5e6461e70f0673b06a"></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="classwx_string.html">wxString</a> wxFileConfig::GetLocalFileName </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>szFile</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">int </td>
<td class="paramname"><em>style</em> = <code>0</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">static</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
</div>
</div>
<a class="anchor" id="a37612450410cfad01a2ed52702875b37"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool wxFileConfig::GetNextEntry </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>str</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">long & </td>
<td class="paramname"><em>index</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the next entry. </p>
<p><b>wxPerl Note:</b> In wxPerl this method only takes the <em>index</em> parameter and returns a 3-element list (continue_flag, string, index_for_getnextentry). </p>
<p>Implements <a class="el" href="classwx_config_base.html#a0c99d5eb83f8ebad82e1a13d1295f644">wxConfigBase</a>.</p>
</div>
</div>
<a class="anchor" id="a16fe0dba12a11a0ab3f7a7ceb6306528"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool wxFileConfig::GetNextGroup </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>str</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">long & </td>
<td class="paramname"><em>index</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Gets the next group. </p>
<p><b>wxPerl Note:</b> In wxPerl this method only takes the <em>index</em> parameter and returns a 3-element list (continue_flag, string, index_for_getnextentry). </p>
<p>Implements <a class="el" href="classwx_config_base.html#a491e0d51c86d4facd8184969ea6d341c">wxConfigBase</a>.</p>
</div>
</div>
<a class="anchor" id="ad0738f455b2ea76e598d1e747576641d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual size_t wxFileConfig::GetNumberOfEntries </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>bRecursive</em> = <code>false</code></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Get number of entries in the current group. </p>
<p>Implements <a class="el" href="classwx_config_base.html#a993bdb14c4115ddc1458fb8bdc9de604">wxConfigBase</a>.</p>
</div>
</div>
<a class="anchor" id="a5dc8869a67cea091376c19438586bdca"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual size_t wxFileConfig::GetNumberOfGroups </td>
<td>(</td>
<td class="paramtype">bool </td>
<td class="paramname"><em>bRecursive</em> = <code>false</code></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Get number of entries/subgroups in the current group, with or without its subgroups. </p>
<p>Implements <a class="el" href="classwx_config_base.html#ad695ef5dd7dee1b24c7813aa08599eb9">wxConfigBase</a>.</p>
</div>
</div>
<a class="anchor" id="a3b14df9f438cf17bcdf06eb0610d35da"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual const <a class="el" href="classwx_string.html">wxString</a>& wxFileConfig::GetPath </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">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Retrieve the current path (always as absolute path). </p>
<p>Implements <a class="el" href="classwx_config_base.html#a2c76e8a110cecc4d89d3af1565044e15">wxConfigBase</a>.</p>
</div>
</div>
<a class="anchor" id="a6151f556961a8c627e1a9cc50ff37631"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool wxFileConfig::HasEntry </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>strName</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section return"><dt>Returns</dt><dd><span class="literal">true</span> if the entry by this name exists. </dd></dl>
<p>Implements <a class="el" href="classwx_config_base.html#aaca0748de0e2e2841aaec85f63403d3b">wxConfigBase</a>.</p>
</div>
</div>
<a class="anchor" id="a7e4498d31191ce0917b66094203db17f"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool wxFileConfig::HasGroup </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>strName</em></td><td>)</td>
<td> const</td>
</tr>
</table>
</td>
<td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<dl class="section return"><dt>Returns</dt><dd><span class="literal">true</span> if the group by this name exists. </dd></dl>
<p>Implements <a class="el" href="classwx_config_base.html#a27472b872af09e73597735d0938b007d">wxConfigBase</a>.</p>
</div>
</div>
<a class="anchor" id="a562a1b81e23d70c1921c2139dcf5580d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool wxFileConfig::RenameEntry </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>oldName</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>newName</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">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Renames an entry in the current group. </p>
<p>The entries names (both the old and the new one) shouldn't contain backslashes, i.e. only simple names and not arbitrary paths are accepted by this function.</p>
<dl class="section return"><dt>Returns</dt><dd><span class="literal">false</span> if <em>oldName</em> doesn't exist or if <em>newName</em> already exists. </dd></dl>
<p>Implements <a class="el" href="classwx_config_base.html#a1871d5f0aec990c1552242203c5ed0c4">wxConfigBase</a>.</p>
</div>
</div>
<a class="anchor" id="a3827f9711a31782a2d4f1ea61e1ea592"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool wxFileConfig::RenameGroup </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>oldName</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>newName</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">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Renames a subgroup of the current group. </p>
<p>The subgroup names (both the old and the new one) shouldn't contain backslashes, i.e. only simple names and not arbitrary paths are accepted by this function.</p>
<dl class="section return"><dt>Returns</dt><dd><span class="literal">false</span> if <em>oldName</em> doesn't exist or if <em>newName</em> already exists. </dd></dl>
<p>Implements <a class="el" href="classwx_config_base.html#a4f85e2947979146ccc77b42c15409834">wxConfigBase</a>.</p>
</div>
</div>
<a class="anchor" id="a6220fdc0f07a7e36e559e58d29965337"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual bool wxFileConfig::Save </td>
<td>(</td>
<td class="paramtype"><a class="el" href="classwx_output_stream.html">wxOutputStream</a> & </td>
<td class="paramname"><em>os</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">const <a class="el" href="classwx_m_b_conv.html">wxMBConv</a> & </td>
<td class="paramname"><em>conv</em> = <code><a class="el" href="classwx_conv_auto.html">wxConvAuto</a>()</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">virtual</span></span> </td>
</tr>
</table>
</div><div class="memdoc">
<p>Saves all config data to the given stream, returns <span class="literal">true</span> if data was saved successfully or <span class="literal">false</span> on error. </p>
<p>Note the interaction of this function with the internal "dirty flag": the data is saved unconditionally, i.e. even if the object is not dirty. However after saving it successfully, the dirty flag is reset so no changes will be written back to the file this object is associated with until you change its contents again.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_config_base.html#a0b8cfc81de4d2534e8ab980b0fc6b9b8" title="Permanently writes all changes (otherwise, they're only written from object's destructor).">wxConfigBase::Flush</a> </dd></dl>
</div>
</div>
<a class="anchor" id="ac2b05e8f651d7390e3c340e5c7feea0e"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
<tr>
<td class="mlabels-left">
<table class="memname">
<tr>
<td class="memname">virtual void wxFileConfig::SetPath </td>
<td>(</td>
<td class="paramtype">const <a class="el" href="classwx_string.html">wxString</a> & </td>
<td class="paramname"><em>strPath</em></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">
<p>Set current path: if the first character is '/', it is the absolute path, otherwise it is a relative path. </p>
<p>'..' is supported. If <em>strPath</em> doesn't exist, it is created.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="classwx_config_path_changer.html" title="A handy little class which changes the current path in a wxConfig object and restores it in dtor...">wxConfigPathChanger</a> </dd></dl>
<p>Implements <a class="el" href="classwx_config_base.html#ad290d3fe7fad4f39a4bb2959db89b379">wxConfigBase</a>.</p>
</div>
</div>
<a class="anchor" id="a709b9d8592d746ca7a0d80abdf20ce95"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void wxFileConfig::SetUmask </td>
<td>(</td>
<td class="paramtype">int </td>
<td class="paramname"><em>mode</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Allows to set the mode to be used for the config file creation. </p>
<p>For example, to create a config file which is not readable by other users (useful if it stores some sensitive information, such as passwords), you could use <code>SetUmask(0077)</code>.</p>
<p>This function doesn't do anything on non-Unix platforms.</p>
<dl class="section see"><dt>See Also</dt><dd><a class="el" href="group__group__funcmacro__file.html#gaf20a1b90767d4e46462f2af875048922" title="Under Unix this macro changes the current process umask to the given value, unless it is equal to -1 ...">wxCHANGE_UMASK()</a> </dd></dl>
</div>
</div>
</div><!-- contents -->
<address class="footer">
<small>
Generated on Thu Nov 27 2014 13:46:47 for wxWidgets by <a href="http://www.doxygen.org/index.html" target="_new">Doxygen</a> 1.8.2
</small>
</address>
<script src="wxwidgets.js" type="text/javascript"></script>
</div><!-- #page_container -->
</body>
</html>
|