1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261
|
.. wxPython Phoenix documentation
This file was generated by Phoenix's sphinx generator and associated
tools, do not edit by hand.
Copyright: (c) 2011-2018 by Total Control Software
License: wxWindows License
.. include:: headings.inc
.. _wx.propgrid.PropertyGridManager:
==========================================================================================================================================
|phoenix_title| **wx.propgrid.PropertyGridManager**
==========================================================================================================================================
:ref:`wx.propgrid.PropertyGridManager` is an efficient multi-page version of :ref:`wx.propgrid.PropertyGrid`, which can optionally have toolbar for mode and page selection, a help text box, and a header.
:ref:`wx.propgrid.PropertyGridManager` inherits from :ref:`wx.propgrid.PropertyGridInterface`, and as such it has most property manipulation functions. However, only some of them affect properties on all pages (eg. :meth:`~wx.propgrid.PropertyGridManager.GetPropertyByName` and :meth:`~wx.propgrid.PropertyGridManager.ExpandAll`), while some (eg. :meth:`~wx.propgrid.PropertyGridManager.Append`) only apply to the currently selected page.
To operate explicitly on properties on specific page, use :meth:`wx.propgrid.PropertyGridManager.GetPage` to obtain pointer to page's :ref:`wx.propgrid.PropertyGridPage` object.
Visual methods, such as SetCellBackgroundColour() are only available in :ref:`wx.propgrid.PropertyGrid`. Use :meth:`wx.propgrid.PropertyGridManager.GetGrid` to obtain pointer to it.
Non-virtual iterators will not work in :ref:`wx.propgrid.PropertyGridManager`. Instead, you must acquire the internal grid (:meth:`~wx.propgrid.PropertyGridManager.GetGrid`) or :ref:`wx.propgrid.PropertyGridPage` object (:meth:`~wx.propgrid.PropertyGridManager.GetPage`).
:ref:`wx.propgrid.PropertyGridManager` constructor has exact same format as :ref:`wx.propgrid.PropertyGrid` constructor, and basically accepts same extra window style flags (albeit also has some extra ones).
Here's some example code for creating and populating a :ref:`wx.propgrid.PropertyGridManager`:
::
pgMan = wx.propgrid.PropertyGridManager(
parent,
PGID,
# These and other similar styles are automatically
# passed to the embedded wx.PropertyGrid.
style = wx.PG_BOLD_MODIFIED|wx.PG_SPLITTER_AUTO_CENTER|
# Include toolbar.
wx.PG_TOOLBAR |
# Include description box.
wx.PG_DESCRIPTION |
# Include compactor.
wx.PG_COMPACTOR |
# Plus defaults.
wx.PGMAN_DEFAULT_STYLE
)
page = pgMan.AddPage("First Page")
page.Append(wx.propgrid.PropertyCategory("Category A1"))
page.Append(wx.propgrid.IntProperty("Number", wx.propgrid.PG_LABEL, 1))
page.Append(wx.propgrid.ColourProperty("Colour",wx.propgrid.PG_LABEL, wx.WHITE))
page = pgMan.AddPage("Second Page")
page.Append("Text", wx.propgrid.PG_LABEL, "(no text)")
page.Append(wx.propgrid.FontProperty("Font",wx.propgrid.PG_LABEL))
# Display a header above the grid
pgMan.ShowHeader()
|phoenix_title| Window Styles
=============================
See :ref:`PropertyGrid Window Styles <propertygrid window styles>`.
|phoenix_title| Event Handling
==============================
See :ref:`PropertyGrid Event Handling <wx.propgrid.PropertyGrid>` for more information.
|
|class_hierarchy| Class Hierarchy
=================================
.. raw:: html
<div id="toggleBlock" onclick="return toggleVisibility(this)" class="closed" style="cursor:pointer;">
<img id="toggleBlock-trigger" src="_static/images/closed.png"/>
Inheritance diagram for class <strong>PropertyGridManager</strong>:
</div>
<div id="toggleBlock-summary" style="display:block;"></div>
<div id="toggleBlock-content" style="display:none;">
<p class="graphviz">
<center><img src="_static/images/inheritance/wx.propgrid.PropertyGridManager_inheritance.png" alt="Inheritance diagram of PropertyGridManager" usemap="#dummy" class="inheritance"/></center>
</div>
<script type="text/javascript">toggleVisibilityOnLoad(document.getElementById('toggleBlock'))</script>
<map id="dummy" name="dummy"> <area shape="rect" id="node1" href="wx.Object.html" title="wx.Object" alt="" coords="5,5,87,35"/> <area shape="rect" id="node6" href="wx.EvtHandler.html" title="wx.EvtHandler" alt="" coords="48,83,159,112"/> <area shape="rect" id="node2" href="wx.Trackable.html" title="wx.Trackable" alt="" coords="112,5,213,35"/> <area shape="rect" id="node3" href="wx.propgrid.PropertyGridManager.html" title="wx.propgrid.PropertyGridManager" alt="" coords="76,315,309,344"/> <area shape="rect" id="node4" href="wx.Panel.html" title="wx.Panel" alt="" coords="66,237,141,267"/> <area shape="rect" id="node5" href="wx.propgrid.PropertyGridInterface.html" title="wx.propgrid.PropertyGridInterface" alt="" coords="167,237,400,267"/> <area shape="rect" id="node7" href="wx.Window.html" title="wx.Window" alt="" coords="59,160,148,189"/> </map>
</p>
|
|method_summary| Methods Summary
================================
================================================================================ ================================================================================
:meth:`~wx.propgrid.PropertyGridManager.__init__` Two step constructor.
:meth:`~wx.propgrid.PropertyGridManager.AddPage` Creates new property page.
:meth:`~wx.propgrid.PropertyGridManager.Clear` Deletes all properties and all pages.
:meth:`~wx.propgrid.PropertyGridManager.ClearPage` Deletes all properties on given page.
:meth:`~wx.propgrid.PropertyGridManager.CommitChangesFromEditor` Forces updating the value of property from the editor control.
:meth:`~wx.propgrid.PropertyGridManager.Create` Two step creation.
:meth:`~wx.propgrid.PropertyGridManager.CreatePropertyGrid` Creates property grid for the manager.
:meth:`~wx.propgrid.PropertyGridManager.EnableCategories` Enables or disables (shows/hides) categories according to parameter enable.
:meth:`~wx.propgrid.PropertyGridManager.EnsureVisible` Selects page, scrolls and/or expands items to ensure that the given item is visible.
:meth:`~wx.propgrid.PropertyGridManager.GetColumnCount` Returns number of columns on given page.
:meth:`~wx.propgrid.PropertyGridManager.GetCurrentPage` Returns currently selected page.
:meth:`~wx.propgrid.PropertyGridManager.GetDescBoxHeight` Returns height of the description text box.
:meth:`~wx.propgrid.PropertyGridManager.GetGrid` Returns pointer to the contained :ref:`wx.propgrid.PropertyGrid`.
:meth:`~wx.propgrid.PropertyGridManager.GetPage` Returns page object for given page index.
:meth:`~wx.propgrid.PropertyGridManager.GetPageByName` Returns index for a page name.
:meth:`~wx.propgrid.PropertyGridManager.GetPageCount` Returns number of managed pages.
:meth:`~wx.propgrid.PropertyGridManager.GetPageName` Returns name of given page.
:meth:`~wx.propgrid.PropertyGridManager.GetPageRoot` Returns "root property" of the given page.
:meth:`~wx.propgrid.PropertyGridManager.GetSelectedPage` Returns index to currently selected page.
:meth:`~wx.propgrid.PropertyGridManager.GetSelectedProperty` Alias for :meth:`~PropertyGridManager.GetSelection` .
:meth:`~wx.propgrid.PropertyGridManager.GetSelection` Shortcut for :meth:`~PropertyGridManager.GetGrid` .:meth:`~PropertyGridManager.GetSelection` .
:meth:`~wx.propgrid.PropertyGridManager.GetToolBar` Returns a pointer to the toolbar currently associated with the :ref:`wx.propgrid.PropertyGridManager` (if any).
:meth:`~wx.propgrid.PropertyGridManager.GetVIterator` Similar to GetIterator, but instead returns :ref:`wx.propgrid.PGVIterator` instance, which can be useful for forward-iterating through arbitrary property containers.
:meth:`~wx.propgrid.PropertyGridManager.InsertPage` Creates new property page.
:meth:`~wx.propgrid.PropertyGridManager.IsAnyModified` Returns ``True`` if any property on any page has been modified by the user.
:meth:`~wx.propgrid.PropertyGridManager.IsFrozen` Returns ``True`` if updating is frozen (ie.
:meth:`~wx.propgrid.PropertyGridManager.IsPageModified` Returns ``True`` if any property on given page has been modified by the user.
:meth:`~wx.propgrid.PropertyGridManager.IsPropertySelected` Returns ``True`` if property is selected.
:meth:`~wx.propgrid.PropertyGridManager.RemovePage` Removes a page.
:meth:`~wx.propgrid.PropertyGridManager.SelectPage` Select and displays a given page.
:meth:`~wx.propgrid.PropertyGridManager.SelectProperty` Select a property.
:meth:`~wx.propgrid.PropertyGridManager.SetColumnCount` Sets number of columns on given page (default is current page).
:meth:`~wx.propgrid.PropertyGridManager.SetColumnTitle` Sets a column title.
:meth:`~wx.propgrid.PropertyGridManager.SetDescBoxHeight` Sets y coordinate of the description box splitter.
:meth:`~wx.propgrid.PropertyGridManager.SetDescription` Sets label and text in description box.
:meth:`~wx.propgrid.PropertyGridManager.SetPageSplitterLeft` Moves splitter as left as possible on an individual page, while still allowing all labels to be shown in full.
:meth:`~wx.propgrid.PropertyGridManager.SetPageSplitterPosition` Sets splitter position on individual page.
:meth:`~wx.propgrid.PropertyGridManager.SetSplitterLeft` Moves splitter as left as possible, while still allowing all labels to be shown in full.
:meth:`~wx.propgrid.PropertyGridManager.SetSplitterPosition` Sets splitter position for all pages.
:meth:`~wx.propgrid.PropertyGridManager.ShowHeader` Show or hide the property grid header control.
================================================================================ ================================================================================
|
|property_summary| Properties Summary
=====================================
================================================================================ ================================================================================
:attr:`~wx.propgrid.PropertyGridManager.ColumnCount` See :meth:`~wx.propgrid.PropertyGridManager.GetColumnCount` and :meth:`~wx.propgrid.PropertyGridManager.SetColumnCount`
:attr:`~wx.propgrid.PropertyGridManager.CurrentPage` See :meth:`~wx.propgrid.PropertyGridManager.GetCurrentPage`
:attr:`~wx.propgrid.PropertyGridManager.DescBoxHeight` See :meth:`~wx.propgrid.PropertyGridManager.GetDescBoxHeight` and :meth:`~wx.propgrid.PropertyGridManager.SetDescBoxHeight`
:attr:`~wx.propgrid.PropertyGridManager.Grid` See :meth:`~wx.propgrid.PropertyGridManager.GetGrid`
:attr:`~wx.propgrid.PropertyGridManager.PageCount` See :meth:`~wx.propgrid.PropertyGridManager.GetPageCount`
:attr:`~wx.propgrid.PropertyGridManager.SelectedPage` See :meth:`~wx.propgrid.PropertyGridManager.GetSelectedPage`
:attr:`~wx.propgrid.PropertyGridManager.SelectedProperty` See :meth:`~wx.propgrid.PropertyGridManager.GetSelectedProperty`
:attr:`~wx.propgrid.PropertyGridManager.Selection` See :meth:`~wx.propgrid.PropertyGridManager.GetSelection`
:attr:`~wx.propgrid.PropertyGridManager.ToolBar` See :meth:`~wx.propgrid.PropertyGridManager.GetToolBar`
================================================================================ ================================================================================
|
|api| Class API
===============
.. class:: wx.propgrid.PropertyGridManager(Panel, PropertyGridInterface)
**Possible constructors**::
PropertyGridManager()
PropertyGridManager(parent, id=ID_ANY, pos=DefaultPosition,
size=DefaultSize, style=PGMAN_DEFAULT_STYLE,
name=PropertyGridManagerNameStr)
PropertyGridManager is an efficient multi-page version of
PropertyGrid, which can optionally have toolbar for mode and page
selection, a help text box, and a header.
.. method:: __init__(self, *args, **kw)
|overload| Overloaded Implementations:
**~~~**
**__init__** `(self)`
Two step constructor.
Call Create when this constructor is called to build up the :ref:`wx.propgrid.PropertyGridManager`.
**~~~**
**__init__** `(self, parent, id=ID_ANY, pos=DefaultPosition, size=DefaultSize, style=PGMAN_DEFAULT_STYLE, name=PropertyGridManagerNameStr)`
The default constructor.
The styles to be used are styles valid for the :ref:`wx.Window`.
:param `parent`:
:type `parent`: wx.Window
:param `id`:
:type `id`: wx.WindowID
:param `pos`:
:type `pos`: wx.Point
:param `size`:
:type `size`: wx.Size
:param `style`:
:type `style`: long
:param `name`:
:type `name`: string
.. seealso:: :ref:`Additional Window Styles <additional window styles>`
**~~~**
.. method:: AddPage(self, label=EmptyString, bmp=PG_NULL_BITMAP, pageObj=None)
Creates new property page.
Note that the first page is not created automatically.
:param `label`: A label for the page. This may be shown as a toolbar tooltip etc.
:type `label`: string
:param `bmp`: Bitmap image for toolbar. If NullBitmap is used, then a built-in default image is used.
:type `bmp`: wx.Bitmap
:param `pageObj`: :ref:`wx.propgrid.PropertyGridPage` instance. Manager will take ownership of this object. ``None`` indicates that a default page instance should be created.
:type `pageObj`: wx.propgrid.PropertyGridPage
:rtype: :ref:`wx.propgrid.PropertyGridPage`
:returns:
Returns pointer to created property grid page.
.. note::
If toolbar is used, it is highly recommended that the pages are added when the toolbar is not turned off using window style flag switching. Otherwise toolbar buttons might not be added properly.
.. method:: Clear(self)
Deletes all properties and all pages.
.. method:: ClearPage(self, page)
Deletes all properties on given page.
:param `page`:
:type `page`: int
.. method:: CommitChangesFromEditor(self, flags=0)
Forces updating the value of property from the editor control.
:param `flags`:
:type `flags`: wx.int
:rtype: `bool`
:returns:
Returns ``True`` if value was actually updated.
.. method:: Create(self, parent, id=ID_ANY, pos=DefaultPosition, size=DefaultSize, style=PGMAN_DEFAULT_STYLE, name=PropertyGridManagerNameStr)
Two step creation.
Whenever the control is created without any parameters, use Create to actually create it. Don't access the control's public methods before this is called.
:param `parent`:
:type `parent`: wx.Window
:param `id`:
:type `id`: wx.WindowID
:param `pos`:
:type `pos`: wx.Point
:param `size`:
:type `size`: wx.Size
:param `style`:
:type `style`: long
:param `name`:
:type `name`: string
:rtype: `bool`
.. seealso:: :ref:`PropertyGrid Window Styles <propertygrid window styles>`
.. method:: CreatePropertyGrid(self)
Creates property grid for the manager.
Reimplement in derived class to use subclassed :ref:`wx.propgrid.PropertyGrid`. However, if you do this then you must also use the two-step construction (ie. default constructor and :meth:`Create` instead of constructor with arguments) when creating the manager.
:rtype: :ref:`wx.propgrid.PropertyGrid`
.. method:: EnableCategories(self, enable)
Enables or disables (shows/hides) categories according to parameter enable.
:param `enable`:
:type `enable`: bool
:rtype: `bool`
.. note::
Calling his may not properly update toolbar buttons.
.. method:: EnsureVisible(self, id)
Selects page, scrolls and/or expands items to ensure that the given item is visible.
:param `id`:
:type `id`: wx.propgrid.PGPropArgCls
:rtype: `bool`
:returns:
Returns ``True`` if something was actually done.
.. method:: GetColumnCount(self, page=-1)
Returns number of columns on given page.
By the default, returns number of columns on current page.
:param `page`:
:type `page`: int
:rtype: `int`
.. method:: GetCurrentPage(self)
Returns currently selected page.
:rtype: :ref:`wx.propgrid.PropertyGridPage`
.. method:: GetDescBoxHeight(self)
Returns height of the description text box.
:rtype: `int`
.. method:: GetGrid(self)
Returns pointer to the contained :ref:`wx.propgrid.PropertyGrid`.
This does not change after :ref:`wx.propgrid.PropertyGridManager` has been created, so you can safely obtain pointer once and use it for the entire lifetime of the manager instance.
:rtype: :ref:`wx.propgrid.PropertyGrid`
.. method:: GetPage(self, *args, **kw)
|overload| Overloaded Implementations:
**~~~**
**GetPage** `(self, ind)`
Returns page object for given page index.
:param `ind`:
:type `ind`: int
:rtype: :ref:`wx.propgrid.PropertyGridPage`
**~~~**
**GetPage** `(self, name)`
Returns page object for given page name.
:param `name`:
:type `name`: string
:rtype: :ref:`wx.propgrid.PropertyGridPage`
**~~~**
.. method:: GetPageByName(self, name)
Returns index for a page name.
If no match is found, ``wx.NOT_FOUND`` is returned.
:param `name`:
:type `name`: string
:rtype: `int`
.. method:: GetPageCount(self)
Returns number of managed pages.
:rtype: `int`
.. method:: GetPageName(self, index)
Returns name of given page.
:param `index`:
:type `index`: int
:rtype: `string`
.. method:: GetPageRoot(self, index)
Returns "root property" of the given page.
It does not have name, etc. and it is not visible. It is only useful for accessing its children.
:param `index`:
:type `index`: int
:rtype: :ref:`wx.propgrid.PGProperty`
.. method:: GetSelectedPage(self)
Returns index to currently selected page.
:rtype: `int`
.. method:: GetSelectedProperty(self)
Alias for :meth:`GetSelection` .
:rtype: :ref:`wx.propgrid.PGProperty`
.. method:: GetSelection(self)
Shortcut for :meth:`GetGrid` .:meth:`GetSelection` .
:rtype: :ref:`wx.propgrid.PGProperty`
.. method:: GetToolBar(self)
Returns a pointer to the toolbar currently associated with the :ref:`wx.propgrid.PropertyGridManager` (if any).
:rtype: :ref:`ToolBar`
.. method:: GetVIterator(self, flags)
Similar to GetIterator, but instead returns :ref:`wx.propgrid.PGVIterator` instance, which can be useful for forward-iterating through arbitrary property containers.
:param `flags`:
:type `flags`: int
:rtype: :ref:`wx.propgrid.PGVIterator`
.. method:: InsertPage(self, index, label, bmp=NullBitmap, pageObj=None)
Creates new property page.
Note that the first page is not created automatically.
:param `index`: Add to this position. -1 will add as the last item.
:type `index`: int
:param `label`: A label for the page. This may be shown as a toolbar tooltip etc.
:type `label`: string
:param `bmp`: Bitmap image for toolbar. If NullBitmap is used, then a built-in default image is used.
:type `bmp`: wx.Bitmap
:param `pageObj`: :ref:`wx.propgrid.PropertyGridPage` instance. Manager will take ownership of this object. If ``None``, default page object is constructed.
:type `pageObj`: wx.propgrid.PropertyGridPage
:rtype: :ref:`wx.propgrid.PropertyGridPage`
:returns:
Returns pointer to created page.
.. method:: IsAnyModified(self)
Returns ``True`` if any property on any page has been modified by the user.
:rtype: `bool`
.. method:: IsFrozen(self)
Returns ``True`` if updating is frozen (ie.
:meth:`Freeze` called but not yet :meth:`Thaw` ).
:rtype: `bool`
.. method:: IsPageModified(self, index)
Returns ``True`` if any property on given page has been modified by the user.
:param `index`:
:type `index`: int
:rtype: `bool`
.. method:: IsPropertySelected(self, id)
Returns ``True`` if property is selected.
Since selection is page based, this function checks every page in the manager.
:param `id`:
:type `id`: wx.propgrid.PGPropArgCls
:rtype: `bool`
.. method:: RemovePage(self, page)
Removes a page.
:param `page`:
:type `page`: int
:rtype: `bool`
:returns:
Returns ``False`` if it was not possible to remove page in question.
.. method:: SelectPage(self, *args, **kw)
|overload| Overloaded Implementations:
**~~~**
**SelectPage** `(self, index)`
Select and displays a given page.
:param `index`: Index of page being seleced. Can be -1 to select nothing.
:type `index`: int
**~~~**
**SelectPage** `(self, label)`
Select and displays a given page (by label).
:param `label`:
:type `label`: string
**~~~**
**SelectPage** `(self, page)`
Select and displays a given page.
:param `page`:
:type `page`: wx.propgrid.PropertyGridPage
**~~~**
.. method:: SelectProperty(self, id, focus=False)
Select a property.
:param `id`:
:type `id`: wx.propgrid.PGPropArgCls
:param `focus`:
:type `focus`: bool
:rtype: `bool`
.. seealso:: :meth:`wx.propgrid.PropertyGrid.SelectProperty` , :meth:`wx.propgrid.PropertyGridInterface.ClearSelection`
.. method:: SetColumnCount(self, colCount, page=-1)
Sets number of columns on given page (default is current page).
:param `colCount`:
:type `colCount`: int
:param `page`:
:type `page`: int
.. note::
If you use header, then you should always use this member function to set the column count, instead of ones present in :ref:`wx.propgrid.PropertyGrid` or :ref:`wx.propgrid.PropertyGridPage`.
.. method:: SetColumnTitle(self, idx, title)
Sets a column title.
Default title for column 0 is "Property", and "Value" for column 1.
:param `idx`:
:type `idx`: int
:param `title`:
:type `title`: string
.. note::
If header is not shown yet, then calling this member function will make it visible.
.. method:: SetDescBoxHeight(self, ht, refresh=True)
Sets y coordinate of the description box splitter.
:param `ht`:
:type `ht`: int
:param `refresh`:
:type `refresh`: bool
.. method:: SetDescription(self, label, content)
Sets label and text in description box.
:param `label`:
:type `label`: string
:param `content`:
:type `content`: string
.. method:: SetPageSplitterLeft(self, page, subProps=False)
Moves splitter as left as possible on an individual page, while still allowing all labels to be shown in full.
:param `page`:
:type `page`: int
:param `subProps`:
:type `subProps`: bool
.. method:: SetPageSplitterPosition(self, page, pos, column=0)
Sets splitter position on individual page.
:param `page`:
:type `page`: int
:param `pos`:
:type `pos`: int
:param `column`:
:type `column`: int
.. note::
If you use header, then you should always use this member function to set the splitter position, instead of ones present in :ref:`wx.propgrid.PropertyGrid` or :ref:`wx.propgrid.PropertyGridPage`.
.. method:: SetSplitterLeft(self, subProps=False, allPages=True)
Moves splitter as left as possible, while still allowing all labels to be shown in full.
:param `subProps`: If ``False``, will still allow sub-properties (ie. properties which parent is not root or category) to be cropped.
:type `subProps`: bool
:param `allPages`: If ``True``, takes labels on all pages into account.
:type `allPages`: bool
.. method:: SetSplitterPosition(self, pos, column=0)
Sets splitter position for all pages.
If you use header, then you should always use this member function to set the splitter position, instead of ones present in :ref:`wx.propgrid.PropertyGrid` or :ref:`wx.propgrid.PropertyGridPage`.
:param `pos`:
:type `pos`: int
:param `column`:
:type `column`: int
.. note::
Splitter position cannot exceed grid size, and therefore setting it during form creation may fail as initial grid size is often smaller than desired splitter position, especially when sizers are being used.
.. method:: ShowHeader(self, show=True)
Show or hide the property grid header control.
It is hidden by the default.
:param `show`:
:type `show`: bool
.. note::
Grid may look better if you use ``wx.propgrid.PG_NO_INTERNAL_BORDER`` window style when showing a header.
.. attribute:: ColumnCount
See :meth:`~wx.propgrid.PropertyGridManager.GetColumnCount` and :meth:`~wx.propgrid.PropertyGridManager.SetColumnCount`
.. attribute:: CurrentPage
See :meth:`~wx.propgrid.PropertyGridManager.GetCurrentPage`
.. attribute:: DescBoxHeight
See :meth:`~wx.propgrid.PropertyGridManager.GetDescBoxHeight` and :meth:`~wx.propgrid.PropertyGridManager.SetDescBoxHeight`
.. attribute:: Grid
See :meth:`~wx.propgrid.PropertyGridManager.GetGrid`
.. attribute:: PageCount
See :meth:`~wx.propgrid.PropertyGridManager.GetPageCount`
.. attribute:: SelectedPage
See :meth:`~wx.propgrid.PropertyGridManager.GetSelectedPage`
.. attribute:: SelectedProperty
See :meth:`~wx.propgrid.PropertyGridManager.GetSelectedProperty`
.. attribute:: Selection
See :meth:`~wx.propgrid.PropertyGridManager.GetSelection`
.. attribute:: ToolBar
See :meth:`~wx.propgrid.PropertyGridManager.GetToolBar`
|