1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358
|
"""
Hierarchy of Sizers supported by wxGlade
@copyright: 2002-2007 Alberto Griggio
@copyright: 2014-2016 Carsten Grohmann
@copyright: 2016-2024 Dietmar Schwertberger
@license: MIT (see LICENSE.txt) - THIS PROGRAM COMES WITH NO WARRANTY
"""
import wx
from wx.lib.buttons import GenButton
import new_properties as np
import clipboard
import common, compat, config, misc
import edit_base
HAVE_WRAP_SIZER = hasattr(wx, "WrapSizer") # only for 3.0
def _frozen(method):
"freeze toplevel parent during update"
def _frozen(sizer, *args, **kwargs):
if config.use_freeze_thaw and sizer.window.widget:
toplevel = sizer.window.widget.GetTopLevelParent()
if config.debugging: print("Freezing", toplevel)
toplevel.Freeze()
else:
toplevel = None
try:
return method(sizer, *args, **kwargs)
finally:
if toplevel:
toplevel.Refresh()
if config.debugging: print("Thawing", toplevel)
toplevel.Thaw()
return _frozen
class SizerSlot(edit_base.Slot):
"A window to represent a slot in a sizer"
WX_CLASS ="sizerslot"
def __init__(self, parent, index, label=None):
edit_base.Slot.__init__(self, parent, index, label)
def set_overlap(self, overlapped=True, add_to_sizer=True):
# interface from GridBagSizer; so self.parent is a sizer
if overlapped==self.overlapped: return
self.overlapped = overlapped
if not config.use_gui: return
sizer = self.parent
if overlapped:
if self.widget:
self.parent.destroying_child_widget(self, self.index)
self.destroy_widget(0)
else:
if sizer.widget and not self.widget:
self.create_widget()
if add_to_sizer:
sizer.widget.Add(self.widget, self.index, self.span, wx.EXPAND, self.border)
self.properties["info"].set( self._get_tooltip() )
common.app_tree.refresh(self) # XXX indicate overlapped slots
def check_drop_compatibility(self):
if self.overlapped:
return (False,"Slot/cell overlapped by another cell")
return (True,None)
# clipboard handling ###############################################################################################
def check_compatibility(self, widget, typename=None):
"check whether widget can be pasted here"
if self.overlapped:
return (False,"Slot/cell overlapped by another cell")
if typename is not None:
if typename=="window":
return (False, "No toplevel object can be pasted here.")
if typename in ('menubar', 'toolbar', 'statusbar'):
return (False, "No %s object can be pasted here."%typename)
if typename=="slot":
return (False, "No slot can be pasted here.")
return (True,None)
if widget.IS_TOPLEVEL:
return (False, "No toplevel object can be pasted here.")
if widget.WX_CLASS in ('wxMenuBar', 'wxToolBar', 'wxStatusBar'):
return (False, "No %s object can be pasted here."%widget.WX_CLASS)
if widget.IS_SLOT:
return (False, "No slot can be pasted here.")
return (True,None)
def write(self, output, tabs):
output.extend( common.format_xml_tag( u'object', '', tabs, **{'class': 'sizerslot'}) )
def _get_tooltip(self):
if self.overlapped:
return "This slot is overlapped by another cell.\n(see Properties->Layout->Span of the other cell)"
return "Add a widget or another sizer here."
class SizerHandleButton(GenButton):
'Provides a "handle" to activate a Sizer and to access its popup menu'
def __init__(self, parent, id, sizer):
GenButton.__init__(self, parent.widget, id, '', size=(5, 5))
self.sizer = sizer
self.SetUseFocusIndicator(False)
self.Bind(wx.EVT_RIGHT_DOWN, self.sizer.popup_menu )
#self.Bind(wx.EVT_KEY_DOWN, misc.on_key_down_event)
colour = compat.wx_SystemSettings_GetColour(wx.SYS_COLOUR_BTNFACE)
self.SetBackgroundColour(colour)
class BaseSizerBuilder(object):
"Language independent base class for all sizer builders / code generators"
tmpl = [] # Statements to generate the sizer from, the stmt has to end with a newline character
language = None # Language to generate the code for
tmpl_SetSizer = '' # Template to call SetSizer()
tmpl_Fit = '' # Template to call Fit()
tmpl_Realize = '' # Template to call Realize() for StdDialogButtonSizer
tmpl_SetSizeHints = '' # Template to set the size hints
tmpl_AddGrowableRow = '' # Template for wxFlexGridSizer to set growable rows
tmpl_AddGrowableCol = '' # Template for wxFlexGridSizer to set growable columns
def __init__(self):
"Initialise sizer builder"
self.tmpl_dict = {} # properties to replace in tmpl
self.codegen = common.code_writers[self.language] #language specific code generator (codegen.BaseLangCodeWriter)
def _get_wparent(self, topl, obj):
"Return the parent widget or a reference to it as string"
raise NotImplementedError
def _prepare_tmpl_content(self, obj):
"""Prepare template variables"""
self.tmpl_dict.clear()
self.tmpl_dict['klass'] = self.codegen.cn(obj.WX_CLASS)
self.tmpl_dict['wxIDANY'] = self.codegen.cn('wxID_ANY')
self.tmpl_dict['parent_widget'] = self._get_wparent(obj)
self.tmpl_dict['sizer_name'] = self.codegen._format_classattr(obj)
def _get_code(self, obj):
"Generates the language specific code for sizer specified in klass"
if not self.tmpl:
return [], [] # init, final
init = []
layout = []
# generate init lines from tmpl filled with tmpl_dict
init.append(self.tmpl % self.tmpl_dict)
# generate layout lines
if not obj.parent.IS_SIZER:
layout.append(self.tmpl_SetSizer % self.tmpl_dict)
if not obj.parent.check_prop("size") and obj.parent.IS_TOPLEVEL:
layout.append(self.tmpl_Fit % self.tmpl_dict)
if "sizehints" in obj.window.properties and obj.window.sizehints:
layout.append(self.tmpl_SetSizeHints % self.tmpl_dict)
return init, layout # init, post
def get_code(self, obj):
"Generates the language specific code for sizer specified in klass"
self._prepare_tmpl_content(obj)
if obj.WX_CLASS == 'wxBoxSizer': return self.get_code_wxBoxSizer(obj)
if obj.WX_CLASS == 'wxWrapSizer': return self.get_code_wxBoxSizer(obj) # the same here
if obj.WX_CLASS == 'wxStaticBoxSizer': return self.get_code_wxStaticBoxSizer(obj)
if obj.WX_CLASS == 'wxStdDialogButtonSizer': return self.get_code_wxStdDialogButtonSizer(obj)
if obj.WX_CLASS == 'wxGridSizer': return self.get_code_wxGridSizer(obj)
if obj.WX_CLASS == 'wxFlexGridSizer': return self.get_code_wxFlexGridSizer(obj)
if obj.WX_CLASS == 'wxGridBagSizer': return self.get_code_wxFlexGridSizer(obj)
return self._get_code(obj)
def get_code_wxStaticBoxSizer(self, obj):
"Set sizer specific properties and generate the code"
self.tmpl_dict['orient'] = self.codegen.cn( obj.properties["orient"].get_string_value() )
self.tmpl_dict['label'] = self.codegen.quote_str( obj.label )
return self._get_code(obj)
def get_code_wxBoxSizer(self, obj):
"Set sizer specific properties and generate the code"
self.tmpl_dict['orient'] = self.codegen.cn( obj.properties["orient"].get_string_value() )
return self._get_code(obj)
def get_code_wxStdDialogButtonSizer(self, obj):
"Set sizer specific properties and generate the code"
ret = self._get_code(obj)
# append Realize to layout code
ret[-1].append(self.tmpl_Realize % self.tmpl_dict)
return ret
def get_code_wxGridSizer(self, obj):
"Set sizer specific properties and generate the code"
if obj.WX_CLASS != 'wxGridBagSizer':
self.tmpl_dict['rows'] = obj.rows
self.tmpl_dict['cols'] = obj.cols
self.tmpl_dict['vgap'] = obj.vgap
self.tmpl_dict['hgap'] = obj.hgap
return self._get_code(obj)
def get_code_wxFlexGridSizer(self, obj):
"Set sizer specific properties and generate the code"
ret = list( self.get_code_wxGridSizer(obj) )
if obj.WX_CLASS=="wxGridBagSizer":
max_row, max_col = obj._get_max_row_col()
else:
max_row = max_col = None
growable = []
if 'growable_rows' in obj.properties:
for row in obj.growable_rows:
if max_row is None or row<=max_row:
self.tmpl_dict['row'] = row
growable.append(self.tmpl_AddGrowableRow % self.tmpl_dict)
if 'growable_cols' in obj.properties:
for col in obj.growable_cols:
if max_col is None or col<=max_col:
self.tmpl_dict['col'] = col
growable.append(self.tmpl_AddGrowableCol % self.tmpl_dict)
ret[-1] = growable + ret[-1]
return ret
def get_code_per_child(self, obj, child):
"""Returns code that will be inserted after the child code; e.g. for adding element to a sizer.
It's placed before the final code returned from get_code()."""
if child.WX_CLASS in ("spacer","sizerslot"): # spacer and slot are adding itself to the sizer
return []
# the name attribute of a spacer is already formatted "<width>, <height>".
# This string can simply inserted in Add() call.
obj_name = self.codegen._format_classattr(child)
# check if sizer has to store as a class attribute
sizer_name = self.codegen._format_classattr(obj)
flag = child.properties["flag"].get_string_value() # as string, joined with "|"
flag = self.codegen.cn_f(flag) or '0'
if obj.WX_CLASS=="wxStdDialogButtonSizer" and child.WX_CLASS=='wxButton':
# XXX optionally use SetAffirmativeButton, SetCancelButton, SetNegativeButton
id_value = child.check_prop("id") and child.properties["id"].value.strip() or "" # e.g. 'wxID_CANCEL'
if ( (child.check_prop_truth("stockitem") and child.stockitem in obj.BUTTON_STOCKITEMS) or
(id_value and id_value.startswith("wxID_") and id_value[5:] in obj.BUTTON_STOCKITEMS) ):
tmpl = self.codegen.tmpl_sizeritem_button
return [tmpl % ( sizer_name, obj_name )]
if obj.WX_CLASS!="wxGridBagSizer":
stmt = self.codegen.tmpl_sizeritem % ( sizer_name, obj_name, child.proportion, flag, child.border )
else:
index = obj._get_row_col(child.index)
stmt = self.codegen.tmpl_gridbagsizeritem % ( sizer_name, obj_name, index, child.span, flag, child.border )
return [stmt]
class SlotGenerator(object):
# generic code generator; as a slot does not have flags etc. we don't need BaseWidgetBuilder etc.
def __init__(self, language):
self.language = language
self.codegen = common.code_writers[self.language] #language specific code generator (codegen.BaseLangCodeWriter)
def get_code(self, obj):
# add spacer for empty sizer slot
parent = obj.parent
if not parent.IS_SIZER or parent._IS_GRIDBAG: return [], []
sizer_name = self.codegen._format_classattr(parent)
size = self.codegen.tmpl_spacersize%(0, 0)
stmt = self.codegen.tmpl_sizeritem % ( sizer_name, size, 0, '0', 0 )
return [stmt], []
def get_event_handlers(self, obj):
return []
class OrientProperty(np.Property):
"orientation property for BoxSizers; hidden property to be set by the ClassOrientProperty"
ORIENTATION_to_STRING = {wx.HORIZONTAL: 'wxHORIZONTAL', wx.VERTICAL: 'wxVERTICAL'}
STRING_to_ORIENTATION = {'wxHORIZONTAL': wx.HORIZONTAL, 'wxVERTICAL': wx.VERTICAL}
def __init__(self, value, default_value=None, name=None):
assert value!=0
np.Property.__init__(self, value, default_value, name)
def _set_converter(self, value):
if not value: return None
if isinstance(value, int): return value
return self.STRING_to_ORIENTATION.get(value, value)
def _write_converter(self, value):
if not value: return None
return self.ORIENTATION_to_STRING[value]
def get_string_value(self):
return self.ORIENTATION_to_STRING[self.value]
class ClassOrientProperty(np.RadioProperty):
# radio box: class name and orientation; will not be written to XML file, but will influence class and orient
CHOICES = [ ('wxBoxSizer (wxVERTICAL)', 'without box and label'),
('wxBoxSizer (wxHORIZONTAL)', 'without box and label'),
('wxStaticBoxSizer (wxVERTICAL)', 'with box and label'),
('wxStaticBoxSizer (wxHORIZONTAL)', 'with box and label') ]
if HAVE_WRAP_SIZER:
CHOICES += [
('wxWrapSizer (wxVERTICAL)', 'without box and label; wraps around'),
('wxWrapSizer (wxHORIZONTAL)', 'without box and label; wraps around') ]
CHOICES += [('wxStdDialogButtonSizer', 'for dialog buttons (will be rearranged acc. to platform style guide)'),
('wxGridSizer', None),
('wxFlexGridSizer', "with columns/rows of different widths"),
('wxGridBagSizer', "with cell spanning (i.e. item may populate multiple grid cells)")]
TOOLTIPS = [c[1] for c in CHOICES]
CHOICES = [c[0] for c in CHOICES]
def __init__(self, value=None):
np.RadioProperty.__init__(self, value, self.CHOICES, tooltips=self.TOOLTIPS)
def write(self, output, tabs=0):
pass
class SizerBase(edit_base.EditBase):
"Base class for every non-virtual Sizer handled by wxGlade"
IS_SIZER = True
IS_TOPLEVEL = IS_WINDOW = IS_SLOT = False
_IS_GRIDBAG = False
CHILDREN = None # any number
PROPERTIES = ["Common", "name", "attribute", "class_orient", "Layout"]
EXTRA_PROPERTIES = []
MANAGED_PROPERTIES = edit_base.MANAGED_PROPERTIES
TOPLEVEL_PROPERTIES = ["fit"]
_PROPERTY_LABELS = {"fit":"Fit parent",
"attribute":'Store as attribute',
"option": "Proportion",
"class_orient":"Sizer Type"}
_PROPERTY_HELP = {"fit":'Sizes the window so that it fits around its subwindows',
"attribute":'Store instance as attribute of window class; e.g. self.sizer_1 = wx.BoxSizer(...)\n'
'Without this, you can not access the sizer from your program'}
def __init__(self, name, parent, index, orient):
edit_base.EditBase.__init__(self, name, parent, index)
# if True, self is not inside another sizer, but it is the responsible of the layout of self.window
toplevel = not parent.IS_SIZER
self.toplevel = toplevel
# initialise instance properties
self.orient = OrientProperty(orient) # will be set from the class_orient property
self.class_orient = ClassOrientProperty(self.get_class_orient()) # will set the orient properties
self.attribute = np.CheckBoxProperty(False, default_value=False)
self.fit = np.ActionButtonProperty(self.fit_parent)
if not self.toplevel:
self.PROPERTIES = self.PROPERTIES + self.MANAGED_PROPERTIES + self.EXTRA_PROPERTIES
# if within another sizer: the arguments to sizer.Add(self, proportion, flag, border)
# same as for edit_windows.ManagedBase
self.span = np.LayoutSpanProperty((1,1) ) # row,colspan for items in GridBagSizers
self.proportion = np.LayoutProportionProperty(1)
self.border = np.SpinProperty(0, immediate=True)
self.flag = np.ManagedFlags(wx.EXPAND)
self._has_layout = True
else:
self._has_layout = False
self.PROPERTIES = self.PROPERTIES + self.TOPLEVEL_PROPERTIES + self.EXTRA_PROPERTIES
self._btn = None # "handle" to activate a Sizer and to access its popup menu (SizerHandleButton)
window = edit_base.EditBase.parent_window
def frozen(self):
return self.window.frozen()
def create_widget(self):
self._btn = SizerHandleButton(self.window, wx.ID_ANY, self ) # XXX handle the popupmenu creation in SizerHandleButton
# ScreenToClient used by WidgetTree for the popup menu
self._btn.Bind(wx.EVT_BUTTON, self.on_selection, id=self._btn.GetId())
if not compat.IS_GTK:
self._btn.Bind(wx.EVT_MOUSE_EVENTS, self.on_mouse_events, id=self._btn.GetId())
def finish_widget_creation(self, level):
self.widget.GetBestSize = self.widget.GetMinSize
self.widget.ScreenToClient = self._btn.ScreenToClient
if self.toplevel:
self.window.set_sizer(self)
if not config.preferences.show_sizer_handle:
self.widget.Show(self._btn, False)
def on_mouse_events(self, event):
if event.Dragging():
# start drag & drop
window = misc.get_toplevel_parent(self._btn)
if self._btn:
self._btn.OnLeftUp(event)
clipboard.begin_drag(window, self)
return
event.Skip()
def on_selection(self, event):
# button clicked -> set ourself as current widget
misc.set_focused_widget(self)
def get_class_orient(self):
# as string
return self.WX_CLASS
def _properties_changed(self, modified, actions):
# "class" and "orient" will only display; "class_orient"
if modified and "flag" in modified and self.parent.IS_SIZER:
self.properties["flag"]._check_value()
if not modified or "class" in modified:
self.properties["class_orient"].set(self.get_class_orient())
if not modified or "orient" in modified:
self.properties["class_orient"].set(self.get_class_orient())
if "class_orient" in modified:
# user has selected -> change
value = self.class_orient
if misc.focused_widget is self: misc.set_focused_widget(None)
wx.CallAfter(change_sizer, self, value)
if (not modified or "flag" in modified or "option" in modified or "border" in modified or "span" in modified):
if not self.toplevel and self.sizer is not None:
if "border" in modified and self.border and not "flag" in modified:
# enable border flags if not yet done
p = self.properties["flag"]
if not p.value_set.intersection(p.FLAG_DESCRIPTION["Border"]):
p.add("wxALL")
if self.widget:
self.sizer.item_properties_modified(self, modified)
actions.add("layout")
edit_base.EditBase._properties_changed(self, modified, actions)
def properties_changed(self, modified):
actions = edit_base.EditBase.properties_changed(self, modified)
if config.debugging:
assert not {"recreate", "recreate2", "refresh", "sizeevent"}.intersection(actions)
if self.widget:
if "layout" in actions:
self.parent_window.layout()
return actions
def check_drop_compatibility(self):
return (False, "Items can only be added to empty slots; add/insert a slot first, if required.")
def check_compatibility(self, widget, typename=None):
if typename is not None:
if typename in ("widget","sizer"):
return ("AddSlot",None)
return (False,"Only widgets and sizers can be pasted here")
if widget.IS_TOPLEVEL:
return (False,"No toplevel objects can be pasted here")
return ("AddSlot",None) # a slot is to be added before inserting/pasting
# popup menu #######################################################################################################
def popup_menu(self, event, pos=None):
"pops up a menu to add or remove slots from self, or to remove self from the application."
event_widget = event.GetEventObject()
menu = self._create_popup_menu(widget=event_widget)
if pos is None:
# convert relative event position to relative widget position
event_pos = event.GetPosition()
screen_pos = event_widget.ClientToScreen(event_pos)
pos = event_widget.ScreenToClient(screen_pos)
event_widget.PopupMenu(menu, pos)
menu.Destroy()
def _can_add_insert_slots(self, report=False):
return True
def _create_popup_menu(self, widget):
# provide popup menu for removal
menu = misc.wxGladePopupMenu(self.name)
widgetclass = self.__class__.__name__.lstrip("Edit")
i = misc.append_menu_item(menu, -1, _('Remove %s\tDel')%widgetclass, wx.ART_DELETE)
misc.bind_menu_item_after(widget, i, self.remove)
if not self.toplevel and self.sizer and self.sizer._can_add_insert_slots():
i = misc.append_menu_item( menu, -1, _('Insert slot before\tCtrl+I') )
misc.bind_menu_item_after(widget, i, self.sizer.insert_slot, self.index)
menu.AppendSeparator()
# other menu items: add/insert slot, copy, cut
if self._can_add_insert_slots():
i = misc.append_menu_item( menu, -1, _('Add slot\tCtrl+A') )
misc.bind_menu_item_after(widget, i, self.add_slot)
if "cols" in self.PROPERTIES: # a grid sizer
i = misc.append_menu_item( menu, -1, _('Add row') )
misc.bind_menu_item_after(widget, i, self.insert_row, -1)
i = misc.append_menu_item( menu, -1, _('Add column') )
misc.bind_menu_item_after(widget, i, self.insert_col, -1)
menu.AppendSeparator()
i = misc.append_menu_item( menu, -1, _('Copy\tCtrl+C'), wx.ART_COPY )
misc.bind_menu_item_after(widget, i, clipboard.copy, self)
i = misc.append_menu_item( menu, -1, _('Cut\tCtrl+X'), wx.ART_CUT )
misc.bind_menu_item_after(widget, i, clipboard.cut, self)
# preview (create or close?)
menu.AppendSeparator()
p = misc.get_toplevel_widget(self)
if p is not None and p.preview_is_visible():
item = _('Close preview (%s)\tF5') % p.name
else:
item = _('Preview (%s)\tF5') % p.name
i = misc.append_menu_item( menu, -1, item )
misc.bind_menu_item_after(widget, i, self.preview_parent)
return menu
def _add_parent_popup_menu_items(self, menu, item, widget):
# called from managed widget items' _create_popup_menu method
# rows/cols if inside a grid sizer
if "rows" in self.PROPERTIES:
row, col = self._get_row_col(item.index)
i = misc.append_menu_item(menu, -1, _('Insert Row before') )
misc.bind_menu_item_after(widget, i, self.insert_row, row)
i = misc.append_menu_item(menu, -1, _('Insert Column before') )
misc.bind_menu_item_after(widget, i, self.insert_col, col)
if row==self.rows-1:
# last row
i = misc.append_menu_item(menu, -1, _('Add Row') )
misc.bind_menu_item_after(widget, i, self.insert_row, -1)
if col==self.cols-1:
# last col
i = misc.append_menu_item(menu, -1, _('Add Column') )
misc.bind_menu_item_after(widget, i, self.insert_col, -1)
if "growable_rows" in self.PROPERTIES:
i = misc.append_menu_item(menu, -1, _('Make Row growable'), kind=wx.ITEM_CHECK )
i.Check(row in self.growable_rows)
misc.bind_menu_item_after(widget, i, self.make_growable, "row", row)
i = misc.append_menu_item(menu, -1, _('Make Column growable'), kind=wx.ITEM_CHECK )
i.Check(col in self.growable_cols)
misc.bind_menu_item_after(widget, i, self.make_growable, "col", col)
if "rows" in self.PROPERTIES:
menu.AppendSeparator()
if self._can_add_insert_slots():
# slots
i = misc.append_menu_item(menu, -1, _('Insert Slot before\tCtrl+I') )
misc.bind_menu_item_after(widget, i, self.insert_slot, item.index)
i = misc.append_menu_item(menu, -1, _('Insert Slots before...\tCtrl+Shift+I') )
misc.bind_menu_item_after(widget, i, self.insert_slot, item.index, True)
if item.index==len(self.children)-1: # last slot -> allow to add
i = misc.append_menu_item(menu, -1, _('Add Slot\tCtrl+A') )
misc.bind_menu_item_after(widget, i, self.add_slot)
i = misc.append_menu_item(menu, -1, _('Add Slots...\tCtrl+Shift+A') )
misc.bind_menu_item_after(widget, i, self.add_slot, True)
menu.AppendSeparator()
####################################################################################################################
def _remove(self):
"removes the sizer from his parent, if it has one"
return self.parent._free_slot( self.parent.children.index(self) )
def remove(self, user=True):
# entry point from GUI
if user: common.history.widget_removing(self)
common.root.saved = False # update the status of the app
focus = self._remove() # slot or window
misc.rebuild_tree(focus)
if user: common.history.widget_removed(focus)
return focus # for undo
def preview_parent(self):
# context menu callback
p = misc.get_toplevel_widget(self)
p.preview()
def fit_parent(self, *args):
"Tell the sizer to resize the window to match the sizer's minimal size"
if self.widget and self.window.widget:
if self.window.IS_TOPLEVEL:
self.widget.Fit(self.window.widget.GetTopLevelParent())
else:
self.widget.Fit(self.window.widget)
# self.widget.SetSizeHints(self.window.widget)
self.window.widget.Layout()
def add_item(self, item, index=None):
"Adds an item to self."
# called from ManagedBase.__init__ when adding an item to the end from XML parser
# or interactively when adding an item to an empty sizer slot
# XXX unify with edit_base.EditBase.add_item
if index is None: index = len(self.children)
if index==len(self.children):
self.children.append(None)
else:
old_child = self.children[index]
if old_child:
self.children[index].recursive_remove(0, keep_slot=True)
if "rows" in self.PROPERTIES and not self._IS_GRIDBAG:
self._adjust_rows_cols() # for GridSizer
self.children[index] = item
def child_widget_created(self, child, level):
"called from finish_widget_creation() to add widget to sizer widget"
index = child.index
if self._IS_GRIDBAG:
# GridBagSizer: add at (row, col) position
self.widget.Add( child.widget, index, child.span, child.flag, child.border, destroy=True )
else:
# no GridBagSizer: add or insert at index position
if index+self.widget._BTN_OFFSET>=len(self.widget.GetChildren()):
self.widget.Add( child.widget, child.proportion, child.flag, child.border )
else:
self.widget.Insert(index+self.widget._BTN_OFFSET, child.widget, child.proportion, child.flag, child.border)
if child.check_prop("size"):
# size has been set in set_size, so we can just use GetSize here
self.set_item_best_size(child, size=child.widget.GetSize())
if self.widget:
self.window.widget.Layout()
def _layout(self):
# for delayed callback; see next method
if self.widget: self.widget.Layout()
def on_child_pasted(self):
# otherwise EXPAND may not be obeyed
wx.CallLater(1, self._layout)
def destroying_child_widget(self, child, index):
# previously in _free_slot
# required here; otherwise removal of a StaticBox of a StaticBoxSizer will cause a crash
# child has been removed from self.children already,
# except when a widget is re-created or a slot is just set to overlapped
self.widget.Detach(child.widget)
def destroyed_child_widget(self):
self.widget.Layout()
def get_child_index(self, index):
# return the index of the widget; in GridBagSizers, overlapped slots are skipped
return index
def set_item_best_size(self, widget, size=(-1,-1)):
if not self.widget or not widget.widget: return
elem = self.widget.GetItem(widget.widget)
if not elem: return
if elem.IsWindow():
item = elem.GetWindow()
w, h = size
if w==-1 or h==-1: best_size = item.GetBestSize()
if w == -1: w = best_size[0]
if h == -1: h = best_size[1]
self.widget.SetItemMinSize(item, w, h)
@_frozen
def item_properties_modified(self, widget, modified=None):
"update layout properties"
if not self.widget or not widget.widget: return
item = self.widget.GetItem(widget.widget) # a SizerItem or GBSizerItem instance
if not item: return
size_was_reduced = False # will the new scaled/expanded size be smaller than the previous?
if modified is None or ("proportion" in modified or "option" in modified) and not self._IS_GRIDBAG:
if widget.proportion<item.GetProportion(): size_was_reduced = True
item.SetProportion(widget.proportion)
if modified is None or "flag" in modified and widget.flag is not None:
if (item.GetFlag() & wx.EXPAND) and not (widget.flag & wx.EXPAND): size_was_reduced = True
item.SetFlag(widget.flag)
if modified is None or "border" in modified:
item.SetBorder(widget.border)
if (modified is None or "span" in modified) and self._IS_GRIDBAG:
self._check_slots(remove_only=True)
item.SetSpan(widget.span)
self._check_slots(add_only=True)
# set either specified size or GetBestSize
if item.IsWindow():
size_p = widget.properties["size"]
best_size = widget.widget.GetBestSize()
if compat.USE_ISSUE_536_WORKAROUND and widget.WX_CLASS =='wxTextCtrl':
# avoid issue 536 (too large values from GetBestSize)
if not size_p.is_active(): return
best_size = (best_size[0], widget.widget.GetSize()[1])
else:
# does invalidate GetBestSize
widget.widget.SetMinSize( (-1, -1) )
if size_p.is_active():
size = size_p.get_size(widget.widget) # XXX check dialog units -> call with window
w, h = size
if w == -1: w = best_size[0]
if h == -1: h = best_size[1]
elif widget.__class__.__name__=="EditSpacer":
w = widget.width
h = widget.height
else:
if size_was_reduced and widget.__class__.__name__ in ("EditPanel","CustomWidget"):
# if proportion is reduced and no size defined, set to a minimum size of 20,20
# as GetBestSize returns the current size
# maybe refactoring is required; search for RRR
w,h = 20,20
else:
w,h = best_size
self.widget.SetItemMinSize(widget.widget, w, h)
def remove_item(self, child, level, keep_slot=False):
"Removes elem from self"
# called from context menu of SizerSlot; detaches element and does re-layout
edit_base.EditBase.remove_item(self, child, level, keep_slot)
if level>0: return
if "rows" in self.PROPERTIES and not self._IS_GRIDBAG:
self._adjust_rows_cols() # for GridSizer
def destroy_widget(self, level):
if not self.widget: return
if compat.IS_PHOENIX:
self.widget.Clear(delete_windows=True) # not available with wxPython 3.0
else:
self.widget.DeleteWindows()
self.widget.Clear()
if not self.parent.IS_SIZER: self.window.widget.SetSizer(None)
# the call of self.widget.Destroy() would crash on mac os
#edit_base.EditBase.destroy_widget(self, level)
self.widget = None
if wx.Platform == '__WXMSW__':
def finish_set(self): # previously called after self.set_option(...)
for c in self.children:
if c.widget:
try:
c.widget.Refresh()
except AttributeError:
pass # sizers have no Refresh
else:
def finish_set(self):
pass
def update_view(self, selected):
if self._btn is None: return
if selected:
colour = wx.RED
else:
colour = compat.wx_SystemSettings_GetColour(wx.SYS_COLOUR_BTNFACE)
if not self._btn or self._btn.IsBeingDeleted(): return
self._btn.SetBackgroundColour(colour)
self._btn.Refresh(True)
# add/insert/free slots; interface mainly from context menus #######################################################
def _add_slot(self, loading=False):
"adds an empty slot to the sizer, i.e. a fake window that will accept the dropping of widgets"
# called from "add slot" context menu handler of sizer
# called from XML parser for adding empty 'sizerslot': sizer._add_slot(loading=True)
slot = SizerSlot(self, len(self.children))
if "rows" in self.PROPERTIES: self._adjust_rows_cols(loading) # for GridSizer
if self.widget: slot.create()
return slot
def _insert_slot(self, index=None):
"Inserts an empty slot into the sizer at pos (1 based); optionally force layout update"
# called from context menu handler; multiple times if applicable; layout will be called there
# also called from SizerBase._remove after a sizer has removed itself and inserts an empty slot instead
if index>=len(self.children) or not self.children[index] is None:
self.children.insert( index, None) # placeholder to be overwritten
slot = SizerSlot(self, index)
if "rows" in self.PROPERTIES: self._adjust_rows_cols() # for GridSizer
if self.widget: slot.create()
return slot
# insert/add slot callbacks for context menus ######################################################################
def _ask_count(self, insert=True):
# helper for next method (insertion/adding of multiple slots)
choices = [str(n) for n in range(1,11)]
if insert:
dlg = wx.SingleChoiceDialog(None, "Select number of slots to be inserted", "Insert Slots", choices)
else:
dlg = wx.SingleChoiceDialog(None, "Select number of slots to be added", "Add Slots", choices)
ret = 0 if dlg.ShowModal()==wx.ID_CANCEL else int(dlg.GetStringSelection())
dlg.Destroy()
return ret
def insert_slot(self, index, multiple=False):
# insert before current
if not self._can_add_insert_slots(report=True):
return
count = self._ask_count() if multiple else 1
if not count: return
with self.window.frozen():
for n in range(count):
slot = self._insert_slot(index)
if self.widget: self.layout()
common.history.sizer_slots_added(self, index, count)
misc.rebuild_tree(slot, recursive=False)
def add_slot(self, multiple=False):
# add to the end
if not self._can_add_insert_slots(report=True):
return
count = self._ask_count(insert=False) if multiple else 1
if not count: return
with self.window.frozen():
for n in range(count):
slot = self._add_slot()
if self.widget: self.layout()
common.history.sizer_slots_added(self, -1, count)
misc.rebuild_tree(slot, recursive=False) # rebuild also slots
@_frozen
def _free_slot(self, index):
"Replaces the element at index with an empty slot"
# called from ManagedBase context menu when removing an item
slot = SizerSlot(self, index)
if self.widget:
slot.create() # create the actual SizerSlot as wx.Window with hatched background
if self._IS_GRIDBAG:
self._check_slots(add_only=True)
self.layout()
return slot
####################################################################################################################
def is_visible(self):
return self.window.is_visible()
def post_load(self):
"""Called after loading of an app from a XML file, before showing the hierarchy of widget for the first time.
This is used only for container widgets, to adjust their size appropriately."""
if "rows" in self.PROPERTIES: self._adjust_rows_cols() # for GridSizer
if not self.toplevel:
return
size_p = self.window.properties['size']
if not size_p.is_active():
self.fit_parent()
w, h = self.widget.GetSize()
postfix = ''
if config.preferences.use_dialog_units:
w, h = compat.ConvertPixelsToDialog( self.window.widget, self.widget.GetSize() )
postfix = 'd'
size_p.set('%s, %s%s' % (w, h, postfix))
def child_widgets_created(self, level):
# called after (all) child widgets have been created or a single one has been added
if "rows" in self.PROPERTIES: self._adjust_rows_cols() # for GridSizer
if not self.toplevel:
return
size_p = self.window.properties['size']
if not size_p.is_active():
self.fit_parent()
w, h = self.widget.GetSize()
postfix = ''
if config.preferences.use_dialog_units:
w, h = compat.ConvertPixelsToDialog( self.window.widget, self.widget.GetSize() )
postfix = 'd'
size_p.set('%s, %s%s' % (w, h, postfix))
def _get_tree_image(self):
"Get an image name for tree display"
name = self.__class__.__name__
if name in ("EditStaticBoxSizer", "EditBoxSizer"):
# with or without label, horizontal/vertical
if self.orient & wx.VERTICAL:
name = "EditVerticalSizer"
elif self.orient & wx.HORIZONTAL:
name = "EditHorizontalSizer"
else:
name = "EditSpacer"
elif name=="EditWrapSizer":
if self.orient & wx.VERTICAL:
name = "EditVerticalWrapSizer"
else:
name = "EditHorizontalWrapSizer"
return name
class wxGladeBoxSizer(wx.BoxSizer):
_BTN_OFFSET = 1
def SetItemMinSize(self, item, w, h):
if w==-1 or h==-1:
try:
w2, h2 = item.GetBestSize()
if w == -1: w = w2
if h == -1: h = h2
except AttributeError:
pass
wx.BoxSizer.SetItemMinSize(self, item, w, h)
class BoxSizerBase(SizerBase):
"orientation handling for BoxSizer and StaticBoxSizer"
def __init__(self, name, parent, index, orient=wx.VERTICAL, elements=0):
# elements: number of slots
SizerBase.__init__(self, name, parent, index, orient)
self.children = []
for i in range(elements): self._add_slot()
def get_class_orient(self):
return '%s (%s)'%( self.WX_CLASS, self.properties["orient"].get_string_value() )
def _check_flags(self, flags, added=None):
excludes = set()
replace = {}
msg = None
if "wxALIGN_RIGHT" in flags and ("wxALIGN_CENTER" in flags or "wxALIGN_CENTER_HORIZONTAL" in flags):
msg = "Multiple conflicting horizontal alignment flags"
if "wxALIGN_CENTER" in flags: replace["wxALIGN_CENTER"] = None
if "wxALIGN_CENTER_HORIZONTAL" in flags: replace["wxALIGN_CENTER_HORIZONTAL"] = None
if "wxALIGN_BOTTOM" in flags and ("wxALIGN_CENTER" in flags or "wxALIGN_CENTER_VERTICAL" in flags):
msg = "Multiple conflicting vertical alignment flags"
if "wxALIGN_CENTER" in flags: replace["wxALIGN_CENTER"] = None
if "wxALIGN_CENTER_VERTICAL" in flags: replace["wxALIGN_CENTER_VERTICAL"] = None
if self.orient==wx.VERTICAL:
excludes = {"wxALIGN_BOTTOM", "wxALIGN_CENTER_VERTICAL", "wxALIGN_CENTER"}
if "wxALIGN_BOTTOM" in flags or "wxALIGN_CENTER_VERTICAL" in flags or "wxALIGN_CENTER" in flags:
msg = "Vertical alignment flags are ignored in vertical sizers"
if "wxALIGN_BOTTOM" in flags: replace["wxALIGN_BOTTOM"] = None
if "wxALIGN_CENTER_VERTICAL" in flags: replace["wxALIGN_CENTER_VERTICAL"] = None
if "wxALIGN_CENTER" in flags: replace["wxALIGN_CENTER"] = "wxALIGN_CENTER_HORIZONTAL"
# Note that using alignment with wxEXPAND can make sense if wxSHAPED is also used,
# as the item doesn't necessarily fully expand in the other direction in this case.
if "wxEXPAND" in flags and not "wxSHAPED" in flags:
if "wxALIGN_RIGHT" in flags or "wxALIGN_CENTER_HORIZONTAL" in flags or "wxALIGN_CENTER" in flags:
msg = "Horizontal alignment flags are ignored with wxEXPAND"
if "wxALIGN_RIGHT" in flags: replace["wxALIGN_RIGHT"] = None
if "wxALIGN_CENTER_HORIZONTAL" in flags: replace["wxALIGN_CENTER_HORIZONTAL"] = None
if "wxALIGN_CENTER" in flags: replace["wxALIGN_CENTER"] = "wxALIGN_CENTER_VERTICAL"
excludes.update({"wxALIGN_RIGHT", "wxALIGN_CENTER_HORIZONTAL", "wxALIGN_CENTER"})
else: # horizontal
excludes = {"wxALIGN_RIGHT", "wxALIGN_CENTER_HORIZONTAL", "wxALIGN_CENTER"}
if "wxALIGN_RIGHT" in flags or "wxALIGN_CENTER_HORIZONTAL" in flags or "wxALIGN_CENTER" in flags:
msg = "Horizontal alignment flags are ignored in horizontal sizers"
if "wxALIGN_RIGHT" in flags: replace["wxALIGN_RIGHT"] = None
if "wxALIGN_CENTER_HORIZONTAL" in flags: replace["wxALIGN_CENTER_HORIZONTAL"] = None
if "wxALIGN_CENTER" in flags: replace["wxALIGN_CENTER"] = "wxALIGN_CENTER_VERTICAL"
if "wxEXPAND" in flags and not "wxSHAPED" in flags:
if "wxALIGN_BOTTOM" in flags or "wxALIGN_CENTER_VERTICAL" in flags or "wxALIGN_CENTER" in flags:
msg = "Vertical alignment flags are ignored with wxEXPAND"
if "wxALIGN_BOTTOM" in flags: replace["wxALIGN_BOTTOM"] = None
if "wxALIGN_CENTER_VERTICAL" in flags: replace["wxALIGN_CENTER_VERTICAL"] = None
if "wxALIGN_CENTER" in flags: replace["wxALIGN_CENTER"] = "wxALIGN_CENTER_HORIZONTAL"
excludes.update( {"wxALIGN_BOTTOM", "wxALIGN_CENTER_VERTICAL", "wxALIGN_CENTER"} )
return excludes, replace, msg
def _properties_changed(self, modified, actions):
if modified and "orient" in modified:
actions.add("image")
SizerBase._properties_changed(self, modified, actions)
class EditBoxSizer(BoxSizerBase):
"Class to handle wxBoxSizer objects"
WX_CLASS = "wxBoxSizer"
def create_widget(self):
BoxSizerBase.create_widget(self)
self.widget = wxGladeBoxSizer(self.orient)
self.widget.Add(self._btn, 0, wx.EXPAND)
if HAVE_WRAP_SIZER:
class wxGladeWrapSizer(wx.WrapSizer):
_BTN_OFFSET = 1
def SetItemMinSize(self, item, w, h):
if w==-1 or h==-1:
try:
w2, h2 = item.GetBestSize()
if w == -1: w = w2
if h == -1: h = h2
except AttributeError:
pass
wx.BoxSizer.SetItemMinSize(self, item, w, h)
class EditWrapSizer(BoxSizerBase):
"Class to handle wxWrapSizer objects"
WX_CLASS = "wxWrapSizer"
def create_widget(self, dont_add=False):
BoxSizerBase.create_widget(self)
self.widget = wxGladeWrapSizer(self.orient)
self.widget.Add(self._btn, 0, wx.EXPAND)
class EditStdDialogButtonSizer(EditBoxSizer):
"Class to handle wxStdDialogButtonSizer objects"
WX_CLASS = "wxStdDialogButtonSizer"
# the stockitems that are handled specially by StdDialogButtonSizer
BUTTON_STOCKITEMS = ["OK", "YES", "SAVE", "APPLY", "CLOSE","NO", "CANCEL", "HELP", "CONTEXT_HELP"]
def __init__(self, name, parent, index, elements=0):
# elements: number of slots
BoxSizerBase.__init__(self, name, parent, index, wx.HORIZONTAL, elements)
def get_class_orient(self):
return self.WX_CLASS
class wxGladeStaticBoxSizer(wx.StaticBoxSizer):
_BTN_OFFSET = 1
def reparenting(self, new_parent):
sb = self.GetStaticBox()
sb.Reparent(new_parent)
def SetItemMinSize(self, item, w, h):
if w==-1 or h==-1:
try:
w2, h2 = item.GetBestSize()
if w == -1: w = w2
if h == -1: h = h2
except AttributeError:
pass
wx.StaticBoxSizer.SetItemMinSize(self, item, w, h)
class EditStaticBoxSizer(BoxSizerBase):
"Class to handle wxStaticBoxSizer objects"
WX_CLASS = "wxStaticBoxSizer"
PROPERTIES = ["Common", "name", "orient", "class_orient", # class and orient are hidden
"label", "attribute",
"Layout"] # not a property, just start the next page in the editor
EXTRA_PROPERTIES = []
def __init__(self, name, parent, index, orient=wx.VERTICAL, label='', elements=3):
BoxSizerBase.__init__(self, name, parent, index, orient, elements)
self.label = np.TextProperty(label)
def create_widget(self):
BoxSizerBase.create_widget(self)
self.widget = wxGladeStaticBoxSizer( wx.StaticBox(self.window.widget, -1, self.label), self.orient )
self.widget.Add(self._btn, 0, wx.EXPAND)
def _properties_changed(self, modified, actions):
if not modified or "label" in modified and self.widget:
self.widget.GetStaticBox().SetLabel(self.label or "")
BoxSizerBase._properties_changed(self, modified, actions)
def destroy_widget(self, level):
if self.widget: self.widget.GetStaticBox().Destroy()
SizerBase.destroy_widget(self, level)
class CustomGridSizer(wx.BoxSizer):
"""Custom wxSizer class used to implement a GridSizer with an additional handle button.
e.g. in EditGridSizer instance: self.widget = CustomGridSizer(self,rows,cols,vgap,hgap"""
_BTN_OFFSET = 0
def __init__(self, parent, rows, cols, vgap, hgap):
wx.BoxSizer.__init__(self, wx.VERTICAL)
self.parent = parent # EditGridSizer or derived class
self._create(rows, cols, vgap, hgap)
wx.BoxSizer.Add(self, self.parent._btn, 0, wx.EXPAND)
wx.BoxSizer.Add(self, self._grid, 1, wx.EXPAND)
if wx.VERSION[:2] < (3,0):
self._growable_rows = set()
self._growable_cols = set()
def _create(self, rows, cols, vgap, hgap):
self._grid = wx.GridSizer(rows, cols, vgap, hgap)
def __getattr__(self, name):
return getattr(self._grid, name)
def reparenting(self, new_parent):
if self.parent._btn:
self.parent._btn.Reparent(new_parent)
def GetBestSize(self):
return self._grid.GetMinSize()
def Add(self, *args, **kwds):
self._grid.Add(*args, **kwds)
def Insert(self, index, *args, **kwds):
self._grid.Insert(index, *args, **kwds)
def Remove(self, *args, **kwds):
try:
index = int(args[0])
self._grid.Remove(index)
except TypeError:
self._grid.Remove(*args, **kwds)
def RemovePos(self, index):
self._grid.Remove(index)
def Detach(self, pos_or_obj):
try:
index = int(pos_or_obj)
self._grid.Detach(index)
except TypeError:
self._grid.Detach(pos_or_obj)
def SetItemMinSize(self, item, w, h):
try:
w2, h2 = item.GetBestSize()
if w == -1: w = w2
if h == -1: h = h2
except AttributeError:
pass
self._grid.SetItemMinSize(item, w, h)
def GetChildren(self):
return self._grid.GetChildren()
def GetItem(self, widget):
if hasattr(self._grid, "FindItem"):
return self._grid.FindItem(widget) # GridBagSizer
return self._grid.GetItem(widget)
def Layout(self):
self._grid.Layout()
wx.BoxSizer.Layout(self)
if wx.VERSION[:2] < (3,0):
# compatibility for wxPython 2.8, as IsRowGrowable was only introduced with wx 2.9.1
def IsRowGrowable(self, row):
return row in self._growable_rows
def IsColGrowable(self, col):
return col in self._growable_cols
def AddGrowableRow(self, row):
self._grid.AddGrowableRow(row)
self._growable_rows.add(row)
def RemoveGrowableRow(self, row):
self._grid.RemoveGrowableRow(row)
self._growable_rows.remove(row)
def AddGrowableCol(self, col):
self._grid.AddGrowableCol(col)
self._growable_cols.add(col)
def RemoveGrowableCol(self, col):
self._grid.RemoveGrowableCol(col)
self._growable_cols.remove(col)
class CustomFlexGridSizer(CustomGridSizer):
def _create(self, rows, cols, vgap, hgap):
self._grid = wx.FlexGridSizer(rows, cols, vgap, hgap)
class CustomGridBagSizer(CustomFlexGridSizer):
def _create(self, rows, cols, vgap, hgap):
self._grid = wx.GridBagSizer(vgap, hgap)
def Add(self, widget, pos, span, flag, border, destroy=False):
"Add to sizer, re-use existing SizerItem if there is one; pos is (row,col)"
if isinstance(pos, int):
pos = self.parent._get_row_col(pos)
old_sizer_item = self._grid.FindItemAtPosition(pos)
if old_sizer_item:
if destroy:
old_window = old_sizer_item.GetWindow()
if old_window:
compat.DestroyLater(old_window)
old_sizer_item.SetSpan((1,1))
old_sizer_item.SetFlag(wx.EXPAND)
old_sizer_item.SetBorder(border)
if isinstance(widget, wx.Sizer):
old_sizer_item.AssignSizer(widget)
else:
old_sizer_item.AssignWindow(widget)
else:
self._grid.Add( widget, pos, span, flag, border )
def Detach(self, obj):
self._grid.Detach(obj)
class GridSizerBase(SizerBase):
"Base class for Grid sizers"
_PROPERTY_HELP = {"rows":"Number of sizer rows; can be set to 0 for 'as many as required'.\n"
"This will re-arrange the children and empty slots, but not add/remove slots.\n"
"To insert/add rows, better use the context menu items",
"cols":"Number of sizer columns; can be set to 0 for 'as many as required'.\n"
"This will re-arrange the children and empty slots, but not add/remove slots.\n"
"To insert/add columns, better use the context menu items",
"vgap":'Vertical extra space between all children',
"hgap":'Horizontal extra space between all children'}
EXTRA_PROPERTIES = ["Grid", "rows", "cols", "vgap", "hgap"]
def __init__(self, name, parent, index, rows=3, cols=3, vgap=0, hgap=0):
SizerBase.__init__(self, name, parent, index, None)
if self.WX_CLASS == "wxGridBagSizer":
val_range=(1,1000)
else:
# Grid and FlexGrid sizers allow columns/rows to be 0, i.e. as many as required
val_range=(0,1000)
self.rows = np.SpinProperty(rows, val_range=val_range, immediate=True)
self.cols = np.SpinProperty(cols, val_range=val_range, immediate=True)
self.vgap = np.SpinProperty(vgap, immediate=True)
self.hgap = np.SpinProperty(hgap, immediate=True)
def fit_parent(self, *args):
"Tell the sizer to resize the window to match the sizer's minimal size"
if self.widget and self.window.widget:
self.widget.Fit(self.window.widget)
self.widget.SetSizeHints(self.window.widget)
def _can_add_insert_slots(self, report=False):
if self.rows and self.cols and len(self.children)==self.rows*self.cols:
# if both are defined, a re-sizing would need to be done
if report:
misc.error_message("Can't add or insert slots as sizer's Rows and Cols are fixed (see Properties -> Grid).")
return False
return True
# helpers ##########################################################################################################
def _get_actual_rows_cols(self):
rows = self.rows
cols = self.cols
# for GridSizer and FlexGridSizer cols may be 0, i.e. auto calculated
if cols==0: cols = (len(self.children)-1)//rows + 1
elif rows==0: rows = (len(self.children)-1)//cols + 1
return rows, cols
def _get_row_col(self, index, cols=None):
if cols is None:
rows, cols = self._get_actual_rows_cols()
return index // cols, index % cols
def _get_pos(self, row, col):
rows, cols = self._get_actual_rows_cols()
return row*cols + col
def _adjust_rows_cols(self, loading=False):
# called when items are added or removed: adjust number of rows
cols_p = self.properties["cols"]
rows_p = self.properties["rows"]
if rows_p.value==0 or cols_p.value==0: return
rows_new = (len(self.children)-1) // cols_p.get() + 1
if rows_new==rows_p.value or (loading and rows_new<rows_p.value): return
rows_p.set(rows_new)
# context menu actions #############################################################################################
def _rebuild_tree(self):
# refresh labels of existing slots; add tree items for new
for c in self.children:
if c.IS_SLOT and c.item:
common.app_tree.refresh(c)
misc.rebuild_tree(self)
@_frozen
def insert_row(self, row, user=True):
"inserts slots for a new row"
rows, cols = self._get_actual_rows_cols()
# calculate the row (0 based) to be inserted
inserted_slots = [] # remove inserted slots from last row on undo
if row==-1 or row==rows:
row = rows
# ensure that the last row is full
for n in range( rows*cols - len(self.children) ):
inserted_slots.append( len(self.children) )
self._insert_slot( len(self.children) )
if self.rows:
self.properties["rows"].set( rows+1 )
if self.widget: self.widget.SetRows(rows+1)
for n in range(cols):
self._insert_slot( n + row*cols )
if "growable_rows" in self.PROPERTIES:
self.properties["growable_rows"].shift_items(row)
if self.widget:
if "growable_rows" in self.PROPERTIES: self._set_growable()
self.layout()
self._rebuild_tree()
if user: common.history.gridsizer_row_col_changed(self, "row", row, 1, inserted_slots)
@_frozen
def insert_col(self, col, user=True):
"inserts slots for a new column"
rows, cols = self._get_actual_rows_cols()
# calculate the column (0 based) to be added
if col==-1: col = cols
# calculate the column index of the last child (0 based)
last_pos = len(self.children)
last_pos_col = (last_pos % cols) - 1
if last_pos_col == -1: last_pos_col = cols-1
# fill up the last row up to the insertion position if required
inserted_slots = [] # remove on undo again
if last_pos_col < min(col,cols-1):
for i in range(min(col,cols-1)-last_pos_col):
inserted_slots.append(last_pos+i)
self._insert_slot( last_pos+i )
# insert the new colum
if self.cols: self.properties["cols"].set( cols+1 )
if self.widget: self.widget.SetCols(cols+1) # also if self.cols is 0 to avoid an exception
# insert placeholders to avoid problems with GridBagSizers and overlap tests
for r in range(rows-1,-1,-1):
self.children.insert( col + r*cols, None )
# actually create the slots
for r in range(0,rows):
self._insert_slot( self._get_pos(r,col) )
if "growable_cols" in self.PROPERTIES:
self.properties["growable_cols"].shift_items(col)
if self.widget:
if "growable_rows" in self.PROPERTIES: self._set_growable()
if self.cols==0: self.widget.SetCols(0)
self.layout()
self._rebuild_tree()
if user: common.history.gridsizer_row_col_changed(self, "col", col, 1, inserted_slots)
@_frozen
def remove_row(self, row, user=True, remove_slots=None):
# find the slots that are in the same row
slots = []
for index,child in enumerate(self.children):
child_row, child_col = self._get_row_col(index)
if child_row==row: slots.append(child)
if self.rows: self.properties["rows"].set( self.rows-1 )
# actually remove the slots
for slot in reversed(slots): slot.remove(user=False)
if remove_slots:
# remove_slots are indices that are valid after having removed the row
for i in sorted(remove_slots, reverse=True): self.children[i].remove(user=False)
if "growable_rows" in self.PROPERTIES:
self.properties["growable_rows"].remove_item(row)
if self.widget:
if "growable_rows" in self.PROPERTIES: self._set_growable()
if self.rows: self.widget.SetRows(self.rows)
self.layout()
self._rebuild_tree()
if user: common.history.gridsizer_row_col_changed(self, "row", row, -1)
@_frozen
def remove_col(self, col, user=True, remove_slots=None):
# find the slots that are in the same row
rows, cols = self._get_actual_rows_cols()
slots = []
for index,child in enumerate(self.children):
child_row, child_col = self._get_row_col(index)
if child_col==col: slots.append(child)
if self.cols: self.properties["cols"].set( self.cols-1 )
# actually remove the slots
for slot in reversed(slots): slot.remove(user=False)
if remove_slots:
# remove_slots are indices that are valid after having removed the row
for i in sorted(remove_slots, reverse=True): self.children[i].remove(user=False)
if self.widget: self.widget.SetCols( cols-1 ) # also if self.cols is 0 to ensure correct behaviour
if "growable_cols" in self.PROPERTIES:
self.properties["growable_cols"].remove_item(col)
if self.widget:
if "growable_cols" in self.PROPERTIES: self._set_growable()
if self.cols==0: self.widget.SetCols(0)
self.layout()
self._rebuild_tree()
if user: common.history.gridsizer_row_col_changed(self, "col", col, -1)
####################################################################################################################
def _check_flags(self, flags, added=None):
replace = {}
msg = None
if "wxEXPAND" in flags:
# Check that expansion will happen in at least one of the directions.
if ( ("wxALIGN_BOTTOM" in flags or "wxALIGN_CENTER_VERTICAL" in flags or "wxALIGN_CENTER" in flags) and
("wxALIGN_RIGHT" in flags or "wxALIGN_CENTER_HORIZONTAL" in flags or "wxALIGN_CENTER" in flags) ):
if added is None or added=="wxEXPAND":
if "wxALIGN_BOTTOM" in flags: replace["wxALIGN_BOTTOM"] = None
if "wxALIGN_CENTER_VERTICAL" in flags: replace["wxALIGN_CENTER_VERTICAL"] = None
if "wxALIGN_CENTER" in flags: replace["wxALIGN_CENTER"] = None
if "wxALIGN_RIGHT" in flags: replace["wxALIGN_RIGHT"] = None
if "wxALIGN_CENTER_HORIZONTAL" in flags: replace["wxALIGN_CENTER_HORIZONTAL"] = None
else:
replace["wxEXPAND"] = None
msg = "wxEXPAND flag would be overridden by alignment flags"
return set(), replace, msg
@_frozen
def _properties_changed(self, modified, actions):
rows, cols = self._get_actual_rows_cols()
rows_p = self.properties["rows"]
cols_p = self.properties["cols"]
if common.history: common.history.monitor_property( rows_p )
if common.history: common.history.monitor_property( cols_p )
if rows*cols < len(self.children):
# number of rows/cols too low; this is not called if rows or col==0
if not modified or "cols" in modified:
# adjust number of rows if required
if rows*cols < len(self.children):
# more rows required
rows = len(self.children) // (cols or 1)
if len(self.children) % (cols or 1): rows += 1
rows_p.set(rows)
if modified and not "rows" in modified: modified.append("rows")
elif "rows" in modified:
cols = len(self.children) // (rows or 1)
if len(self.children) % (rows or 1): cols += 1
cols_p.set(cols)
if modified and not "cols" in modified: modified.append("cols")
if self.WX_CLASS != "wxGridBagSizer":
if self.rows==0:
cols_p.set_range(1,1000)
else:
cols_p.set_range(0,1000)
if self.cols==0:
rows_p.set_range(1,1000)
elif self.WX_CLASS != "wxGridBagSizer":
rows_p.set_range(0,1000)
if not "class_orient" in modified: # otherwise, change_sizer will be called and we can skip the following
if not modified or "rows" in modified and self.widget:
if self.widget.GetRows()!=self.rows:
self.widget.SetRows(self.rows)
actions.add("layout")
if not modified or "cols" in modified and self.widget:
if self.widget.GetCols()!=self.cols:
self.widget.SetCols(self.cols)
actions.add("layout")
if not modified or "hgap" in modified and self.widget:
if self.widget.GetHGap()!=self.hgap:
self.widget.SetHGap(self.hgap)
actions.add("layout")
if not modified or "vgap" in modified and self.widget:
if self.widget.GetVGap()!=self.vgap:
self.widget.SetVGap(self.vgap)
actions.add("layout")
if "growable_rows" in self.properties and self.widget:
if not modified or "growable_rows" in modified or "growable_cols" in modified:
self._set_growable()
actions.add("layout")
SizerBase._properties_changed(self, modified, actions)
class EditGridSizer(GridSizerBase):
"Class to handle wxGridSizer objects"
WX_CLASS = "wxGridSizer"
def __init__(self, name, parent, index, rows=3, cols=3, vgap=0, hgap=0):
GridSizerBase.__init__(self, name, parent, index, rows, cols, vgap, hgap)
def create_widget(self):
GridSizerBase.create_widget(self)
self.widget = CustomGridSizer(self, self.rows, self.cols, self.vgap, self.hgap)
class _GrowableDialog(wx.Dialog):
def __init__(self, parent, title):
wx.Dialog.__init__(self, parent, -1, title)
self.sizer = sizer = wx.BoxSizer(wx.VERTICAL)
self.message = wx.StaticText(self, -1, "")
sizer.Add(self.message, 0, wx.TOP | wx.LEFT | wx.RIGHT | wx.EXPAND, 10)
self.choices = wx.CheckListBox(self, -1, choices=[])
sizer.Add(self.choices, 1, wx.EXPAND | wx.LEFT | wx.RIGHT, 10)
sizer.Add(wx.StaticLine(self, -1), 0, wx.EXPAND | wx.ALL, 10)
sz2 = wx.BoxSizer(wx.HORIZONTAL)
sz2.Add(wx.Button(self, wx.ID_OK, ""), 0, wx.ALL, 10)
sz2.Add(wx.Button(self, wx.ID_CANCEL, ""), 0, wx.ALL, 10)
sizer.Add(sz2, 0, wx.ALIGN_CENTER)
self.SetAutoLayout(True)
self.SetSizer(sizer)
sizer.Fit(self)
self.CenterOnScreen()
def get_value(self):
ret = []
for c,choice in enumerate(self._choices):
if self.choices.IsChecked(c):
ret.append(str(int(choice)-1))
return ",".join(ret)
def set_choices(self, choices, values):
self.choices.Set(choices)
self._choices = choices
for i,value in enumerate(choices):
if value in values: self.choices.Check(i)
def set_descriptions(self, title, message):
self.SetTitle(title)
self.message.SetLabel(message)
class _GrowablePropertyD(np.DialogPropertyD):
def _create_dialog(self):
if self.dialog is None:
parent = self.text.GetTopLevelParent()
self.dialog = _GrowableDialog(parent, self.title)
rows, cols = self.owner._get_actual_rows_cols()
row_or_col_count = rows if "rows" in self.name else cols
choices = [ str(n) for n in range(1, row_or_col_count+1) ] # dialog is 1 based
selected = [str(n+1) for n in self.value]
self.dialog.set_choices(choices, selected)
self.dialog.sizer.Fit(self.dialog)
return self.dialog
def _set_converter(self, value):
# used by set()
if isinstance(value, compat.basestring):
if not value: return []
try:
value = sorted( [int(n) for n in value.split(",") ] )
except:
return []
return value
def _convert_from_text(self, text=None):
if text is None: text = self.text.GetValue()
row_or_col_count = getattr(self.owner, self.name.split("_")[-1])
try:
value = [int(n)-1 for n in text.split(",")] # text is 1-based, value is 0-based
value.sort()
if len(value)!=len(set(value)): return None # double numbers
if value and not row_or_col_count: return None # no rows/cols
if min(value)<0 or max(value)>=row_or_col_count: return None # number out of range
except:
return None
return value
def _convert_to_text(self, value):
# from internal 0-based string value to text control 1-based: "0,1" -> "1,2"
ret = [str(n+1) for n in self.value]
return ",".join(ret)
def get_string_value(self):
# for XML file writing
return ",".join( [str(n) for n in self.value] )
def remove_item(self, item):
# called when a column is deleted
if not self.value: return
new = []
for n in self.value:
if n!=item:
if n<item:
new.append(n)
else:
new.append(n-1)
deactivate = not new
self.set( new, deactivate=deactivate )
def shift_items(self, item):
# when a row/col is added, the values above need to be shifted by 1
if not self.value: return
new = []
for n in self.value:
if n<item:
new.append(n)
else:
new.append(n+1)
self.set( new )
def keep_items(self, indices):
if not self.value: return
new = [indices.index(n) for n in self.value if n in indices]
self.set( new )
class EditFlexGridSizer(GridSizerBase):
"Class to handle wxFlexGridSizer objects"
WX_CLASS = "wxFlexGridSizer"
EXTRA_PROPERTIES = GridSizerBase.EXTRA_PROPERTIES + ["growable_rows", "growable_cols"]
_PROPERTY_HELP = {"growable_rows":'Select growable rows',
"growable_cols":'Select growable columns'}
def __init__(self, name, parent, index, rows=3, cols=3, vgap=0, hgap=0):
GridSizerBase.__init__(self, name, parent, index, rows, cols, vgap, hgap)
self.growable_rows = _GrowablePropertyD([], default_value=[])
self.growable_cols = _GrowablePropertyD([], default_value=[])
self.properties["growable_rows"].title = 'Select growable rows'
self.properties["growable_cols"].title = 'Select growable cols'
def create_widget(self):
GridSizerBase.create_widget(self)
self.widget = CustomFlexGridSizer(self, self.rows, self.cols, self.vgap, self.hgap)
self._set_growable()
def _set_growable(self):
rows = self.growable_rows
cols = self.growable_cols
rowcount,colcount = self._get_actual_rows_cols()
for r in range(rowcount):
growable = self.widget.IsRowGrowable(r)
if growable and not r in rows:
self.widget.RemoveGrowableRow(r)
elif not growable and r in rows:
self.widget.AddGrowableRow(r)
for c in range(colcount):
growable = self.widget.IsColGrowable(c)
if growable and not c in cols:
self.widget.RemoveGrowableCol(c)
elif not growable and c in cols:
self.widget.AddGrowableCol(c)
@_frozen
def make_growable(self, direction, row_or_col):
"set growable_rows or growable_cols"
p_name = "growable_%ss"%direction
p = self.properties[p_name]
if row_or_col in p.value:
p.value.remove(row_or_col)
else:
p.value.append(row_or_col)
p.value.sort()
p.set_active(bool(p.value))
self.properties_changed([p_name])
p.update_display()
def ask_growable(self, row, col):
"ask user whether to make a row or col growable when the user has selected EXPAND without a growable row or col"
import dialogs
dlg = dialogs.MakeRowColGrowableDlg(common.main)
usr = dlg.ShowModal()
if usr != wx.ID_OK: return
changed = []
# we can be sure that row and col are not in the property values
if dlg.cb_row_growable.GetValue():
p = self.properties["growable_rows"]
p.set(sorted(p.value+[row]), activate=True)
changed.append("growable_rows")
if dlg.cb_col_growable.GetValue():
p = self.properties["growable_cols"]
p.set(sorted(p.value+[col]), activate=True)
changed.append("growable_cols")
dont_show_again = dlg.cb_dont_show_again.GetValue()
if changed: self.properties_changed(changed)
class EditGridBagSizer(EditFlexGridSizer):
"Class to handle wxFlexGridSizer objects"
WX_CLASS = "wxGridBagSizer"
_IS_GRIDBAG = True
_PROPERTY_HELP = {"rows":"Numbers of sizer rows; this is just used internally for wxGlade design, not by wx",
"cols":"Numbers of sizer columns; this is just used internally for wxGlade design, not by wx"}
def create_widget(self):
GridSizerBase.create_widget(self)
self.widget = CustomGridBagSizer(self, self.rows, self.cols, self.vgap, self.hgap)
def child_widgets_created(self, level):
self._set_growable()
def check_span_range(self, index, rowspan=1, colspan=1, inserting=False):
"called from LayoutSpanProperty to set the maximum row/col span range"
row, col = self._get_row_col(index)
# check max colspan
max_col = col
for c in range(col+1, self.cols):
for r in range(row, row+rowspan):
# check cell content
p = self._get_pos(r,c)
if p>=len(self.children):
#max_col = c
max_col = self.cols-1
break
child = self.children[p]
if not isinstance(child, SizerSlot): break
if inserting and child.overlapped: break
if p>=len(self.children) or not isinstance(child, SizerSlot): break
if inserting and child.overlapped: break
# only empty cells found
max_col = c
# check max rowspan
max_row = row
for r in range(row+1, self.rows):
for c in range(col, col+colspan):
# check cell content
p = self._get_pos(r,c)
if p>=len(self.children):
#max_row = r
max_row = self.rows-1
break
child = self.children[p]
if not isinstance(child, SizerSlot): break
if inserting and child.overlapped: break
if p>=len(self.children) or not isinstance(child, SizerSlot): break
if inserting and child.overlapped: break
# only empty cells found
max_row = r
return max_row-row+1, max_col-col+1
def _get_occupied_slots(self):
"get pos for all slots that are SizerSlots only, but are occupied by other items spanning over rows/cols"
index = 0
occupied = []
rows, cols = self._get_actual_rows_cols()
for row in range(rows):
for col in range(cols):
if index==len(self.children): break
child = self.children[index]
if not isinstance(child, SizerSlot) and not child is None:
# an element, check whether it spans over any slots
span = child.span
if span != (1,1):
for r in range(row, row+span[0]):
for c in range(col, col+span[1]):
if r==row and c ==col: continue # the original cell
if c>=self.cols: continue
occupied.append( self._get_pos(r,c) )
index += 1
if index==len(self.children): break
return occupied
def _get_max_row_col(self):
"get last row and col indices that are populated or spanned; for use by rows/cols properties"
max_row = max_col = 0
for index, child in enumerate(self.children):
row, col = self._get_row_col(index)
if not isinstance(child, SizerSlot) and not child is None:
span = child.span
max_row = max( max_row, row + span[0] - 1 )
max_col = max( max_col, col + span[1] - 1 )
return max_row, max_col
def _check_slots(self, remove_only=False, add_only=False, add_to_sizer=True):
"add/remove the widgets for empty slots"
occupied = set( self._get_occupied_slots() )
for index,child in enumerate(self.children):
if isinstance(child, SizerSlot):
if index in occupied:
if not add_only: child.set_overlap(True, add_to_sizer=add_to_sizer)
else:
if not remove_only: child.set_overlap(False, add_to_sizer=add_to_sizer)
def _can_add_insert_slots(self, report=False):
if report:
misc.error_message("Can't insert or add slots as sizer's Rows and Cols are fixed (see Properties -> Grid).")
return False
def get_child_index(self, index):
# return the index of the widget; overlapped slots are skipped
ret = 0
for p, child in enumerate(self.children):
if child is None or (isinstance(child, SizerSlot) and child.overlapped): continue
if p==index: return ret
ret += 1
# context menu actions #############################################################################################
@_frozen # if _frozen is used, this should be called via wx.CallAfter
def _recreate(self, rows, cols, previous_rows, previous_cols):
"rows, cols: list of indices to keep or None for new rows/cols"
if rows is None: rows = [r if r<previous_rows else None for r in range(self.rows)]
if cols is None: cols = [c if c<previous_cols else None for c in range(self.cols)]
remove_slots = [] # as of now, only slots are being removed
remove_rows = [r for r in range(previous_rows) if not r in rows]
remove_cols = [c for c in range(previous_cols) if not c in rows]
new_children = [[None]*len(cols) for row in range(len(rows))]
# detach all elements from old sizer
for index, child in enumerate(self.children):
r,c = self._get_row_col(index, previous_cols)
if r not in rows or c not in cols:
remove_slots.append(child)
if child.widget:
self.widget.Detach(child.widget)
continue
new_children[rows.index(r)][cols.index(c)] = child
if child.widget:
self.widget.Detach(child.widget)
# check whether an item is spanning over the removed row/col and reduce span by 1
span = child.span
r_end = r+span[0]-1
c_end = c+span[1]-1
spanned_rows = [r_ for r_ in range(r,r_end+1) if r_ in rows]
spanned_cols = [c_ for c_ in range(c,c_end+1) if c_ in cols]
new_span = (rows.index( spanned_rows[-1] ) - rows.index(r) + 1,
cols.index( spanned_cols[-1] ) - cols.index(c) + 1)
if new_span != span:
child.properties["span"].set( new_span )
# remove the slots, if required
set_focus = misc.focused_widget in remove_slots
for slot in reversed(remove_slots): slot.recursive_remove(level=0)
if set_focus:
misc.set_focused_widget(self)
self.properties["rows"].set( len(rows) )
self.properties["growable_rows"].keep_items(rows) # 1 based
self.properties["cols"].set( len(cols) )
self.properties["growable_cols"].keep_items(cols)
# insert placeholders to avoid problems with GridBagSizers and overlap tests
self.children[:] = sum(new_children,[])
# actually create the new slots
for index, child in enumerate(self.children):
if child is not None:
common.app_tree.refresh(child)
continue
self._insert_slot( index )
# check overlapped slots
self._check_slots(add_to_sizer=False)
if self.widget:
# re-create the widget and add the items
for c in self.widget._grid.GetChildren():
if c and c.IsSizer():
compat.SizerItem_SetSizer(c, None)
self.widget._grid.Clear()
#self.widget._grid.Destroy() # spurious crashes, even with CallAfter
self.widget._create(None,None, self.vgap, self.hgap)
wx.BoxSizer.Add(self.widget, self.widget._grid, 1, wx.EXPAND)
for child in self.children:
if not child.widget: continue # for overlapped sizer slots, widget may be None
self.widget.Add(child.widget, child.index, child.span, child.flag, child.border)
self._set_growable()
misc.rebuild_tree(self)
def remove_row(self, row, user=True):
rows = [r for r in range(self.rows) if r!=row]
self._recreate(rows, None, self.rows, self.cols)
if self.widget: self.parent_window.layout()
if user: common.history.gridsizer_row_col_changed(self, "row", row, -1)
def remove_col(self, col, user=True):
cols = [c for c in range(self.cols) if c!=col]
self._recreate(None, cols, self.rows, self.cols)
if self.widget: self.parent_window.layout()
if user: common.history.gridsizer_row_col_changed(self, "col", col, -1)
def insert_row(self, row=-1, user=True):
rows = [r for r in range(self.rows)]
if row==-1:
row = len(rows)
rows.append(None)
else:
rows.insert(row, None)
self._recreate(rows, None, self.rows, self.cols)
if self.widget: self.parent_window.layout()
if user: common.history.gridsizer_row_col_changed(self, "row", row, 1)
def insert_col(self, col=-1, user=True):
cols = [c for c in range(self.cols)]
if col==-1:
col = len(cols)
cols.append(None)
else:
cols.insert(col, None)
self._recreate(None, cols, self.rows, self.cols)
if self.widget: self.parent_window.layout()
if user: common.history.gridsizer_row_col_changed(self, "col", col, 1)
def _set_row_col_range(self):
"set ranges of rows/cols properties"
max_row, max_col = self._get_max_row_col()
rows_p = self.properties["rows"]
cols_p = self.properties["cols"]
rows_p.set_range(max_row+1, rows_p.val_range[1])
cols_p.set_range(max_col+1, cols_p.val_range[1])
def check_property_modification(self, name, value, new_value):
max_row, max_col = self._get_max_row_col()
if name=="rows" and new_value<max_row+1: return False
if name=="cols" and new_value<max_col+1: return False
return EditFlexGridSizer.check_property_modification(self, name, value, new_value)
def _properties_changed(self, modified, actions):
if modified and ("rows" in modified or "cols" in modified):
rows_p = self.properties["rows"]
cols_p = self.properties["cols"]
if rows_p.previous_value is not None or cols_p.previous_value is not None:
# actually a user input
rows = cols = None # default arguments
if "rows" in modified:
previous_rows = rows_p.previous_value
previous_cols = self.cols
if previous_rows<rows_p.value:
# add rows
rows = list(range(previous_rows)) + [None]*(rows_p.value-previous_rows)
else:
# remove rows
rows = list(range(rows_p.value))
if "cols" in modified:
previous_rows = self.rows
previous_cols = cols_p.previous_value
if previous_cols<cols_p.value:
# add cols
cols = list(range(previous_cols)) + [None]*(cols_p.value-previous_cols)
else:
# remove cols
cols = list(range(cols_p.value))
self._recreate(rows, cols, previous_rows, previous_cols)
actions.add("layout")
return
EditFlexGridSizer._properties_changed(self, modified, actions)
def on_load(self, child=None):
# called from XML parser right after loading the widget or when pasting an item into a slot
# ensure that rows/cols is not 0; this is actually an error in the file
rows = self.rows
cols = self.cols
if rows==0: self.properties["rows"].set( (len(self.children)-1)//cols +1 )
if cols==0: self.properties["cols"].set( (len(self.children)-1)//rows +1 )
if child is not None:
# an item is being pasted into a slot; we might need to limit the spanning
span_p = child.properties["span"]
if span_p.value != (1,1):
# check whether spanning is OK or needs to be reduced
span = span_p.value
max_span = self.check_span_range(child.index, *span, inserting=True)
new_span = (min(span[0], max_span[0]), min(span[1], max_span[1]))
if new_span != span: span_p.set(new_span)
self._check_slots(remove_only=True)
EditFlexGridSizer.on_load(self, child)
def change_sizer(old, new):
"Replaces sizer instance 'old' with a new one; 'new' is the name of the new one."
index = old.index
parent = old.parent
constructors = {
'wxBoxSizer (wxVERTICAL)': lambda: EditBoxSizer(old.name, parent, index, wx.VERTICAL, 0),
'wxBoxSizer (wxHORIZONTAL)': lambda: EditBoxSizer(old.name, parent, index, wx.HORIZONTAL, 0),
'wxWrapSizer (wxVERTICAL)': lambda: EditWrapSizer(old.name, parent, index, wx.VERTICAL, 0),
'wxWrapSizer (wxHORIZONTAL)': lambda: EditWrapSizer(old.name, parent, index, wx.HORIZONTAL, 0),
'wxStaticBoxSizer (wxVERTICAL)': lambda: EditStaticBoxSizer(old.name, parent, index, wx.VERTICAL,
getattr(old, 'label', old.name), 0),
'wxStaticBoxSizer (wxHORIZONTAL)': lambda: EditStaticBoxSizer(old.name, parent, index, wx.HORIZONTAL,
getattr(old, 'label', old.name), 0),
'wxStdDialogButtonSizer': lambda: EditStdDialogButtonSizer(old.name, parent, index, 0),
'wxGridSizer': lambda: EditGridSizer(old.name, parent, index, rows=0, cols=0),
'wxFlexGridSizer': lambda: EditFlexGridSizer(old.name, parent, index, rows=0, cols=0),
'wxGridBagSizer': lambda: EditGridBagSizer(old.name, parent, index, rows=0, cols=0) }
with old.window.frozen():
# construct without children, take then the children from the old sizer
parent.children[index] = None # avoid recursive_remove being called
szr = constructors[new]()
if old._IS_GRIDBAG and old.widget:
for index, child in enumerate(old.children):
if child:
if child.widget:
old.destroying_child_widget(child, index)
elif child.IS_SLOT and child.overlapped:
# re-create hidden widget
child.set_overlap(False, add_to_sizer=False)
szr.children.extend(old.children)
# copy/set properties
if isinstance(szr, GridSizerBase):
# take rows, cols, hgap, vgap from old sizer, if applicable
rows = getattr(old, "rows", 1)
cols = getattr(old, "cols", len(szr.children))
if isinstance(szr, EditGridBagSizer):
# for GridSizer and FlexGridSizer cols may be 0, i.e. auto calculated
if rows==0: rows = (len(szr.children)-1)//cols +1
if cols==0: cols = (len(szr.children)-1)//rows +1
szr.properties["rows"].set( rows )
szr.properties["cols"].set( cols )
szr.properties["hgap"].set( getattr(old, "hgap", 0) )
szr.properties["vgap"].set( getattr(old, "vgap", 0) )
szr.properties_changed( ["rows","cols","hgap","vgap"] )
if isinstance(szr, EditFlexGridSizer) and isinstance(old, EditFlexGridSizer):
# take growable rows and cols from old sizer
grow_r_p = old.properties["growable_rows"]
grow_c_p = old.properties["growable_cols"]
if grow_r_p.is_active():
szr.properties['growable_rows'].value = grow_r_p.value
szr.properties['growable_rows'].deactivated = False
if grow_c_p.is_active():
szr.properties['growable_cols'].value = grow_c_p.value
szr.properties['growable_cols'].deactivated = False
# XXX keep rows, cols, growable_rows, growable_cols in attributes of new sizer if it's not a (Flex)GridSizer
# and re-use them if user switches back
if szr._IS_GRIDBAG:
szr._check_slots(remove_only=True) # for the children, .parent is still the old sizer here
for widget in szr.children:
widget.parent = szr
if "flag" in widget.properties: widget.properties["flag"]._check_value()
if old.widget is not None:
# detach child widgets from old sizer
for c in old.widget.GetChildren():
if c and c.IsSizer():
compat.SizerItem_SetSizer(c, None)
# destroy old and create new sizer
compat.DestroyLater(old._btn)
old.widget.Clear() # without deleting window items; but sets the sizer of the windows to NULL
szr.create_widget()
# move child widgets to new sizer
for child in szr.children:
if child.IS_SLOT and child.overlapped: continue
szr.child_widget_created(child, 0)
# move new sizer to parent if this is a sizer; sizer item is kept
if parent.IS_SIZER:
szr.copy_properties(old, szr.MANAGED_PROPERTIES, notify=False) # span","proportion","border","flag"
si = szr.sizer.widget.GetItem(old.widget)
compat.SizerItem_SetSizer(si, szr.widget)
common.app_tree.change_item_editor(old, szr, keep_children=True)
old.toplevel = False # could probably be omitted
del old.children[:]
old.destroy_widget(0)
for child in szr.children:
if child: child.parent = szr
if not szr.parent.IS_SIZER:
szr.window.set_sizer(szr)
if szr.widget:
szr.top_sizer.layout()
if szr.parent.IS_TOPLEVEL:
szr.fit_parent()
misc.set_focused_widget(szr)
def _builder(parent, index, orientation=wx.VERTICAL, slots=1, is_static=False, label="", is_wrap=False):
name = parent.toplevel_parent.get_next_contained_name('sizer_%d')
# add slots later
if orientation=="StdDialogButtonSizer":
editor = EditStdDialogButtonSizer(name, parent, index, 0)
elif is_static:
editor = EditStaticBoxSizer(name, parent, index, orientation, label, 0)
elif is_wrap:
editor = EditWrapSizer(name, parent, index, orientation, 0)
else:
editor = EditBoxSizer(name, parent, index, orientation, 0)
if parent.IS_SIZER:
if orientation=="StdDialogButtonSizer":
editor.properties['proportion'].set(0)
editor.properties['flag'].set('wxALIGN_RIGHT')
else:
editor.properties['flag'].set('wxEXPAND')
# add the slots
for i in range(slots):
editor._add_slot()
#editor.layout()
if parent.widget: editor.create()
return editor
class _SizerDialog(wx.Dialog):
def __init__(self, parent, to_dialog, default_orient=None):
pos = wx.GetMousePosition()
wx.Dialog.__init__( self, misc.get_toplevel_parent(parent), -1, _('Select sizer type'), pos )
szr = wx.BoxSizer(wx.VERTICAL)
# static box sizer with radio buttons for orientation / type
self.orientation = 1 if default_orient==wx.VERTICAL else 0
self.radios = []
vsizer = wx.StaticBoxSizer(wx.StaticBox(self, -1, _("Orientation")), wx.VERTICAL)
for i, choice in enumerate( ('Horizontal', 'Vertical') ):
radio = wx.RadioButton(self, -1, _(choice), style=wx.RB_GROUP if i==0 else 0)
if i==self.orientation: radio.SetValue(True)
vsizer.Add(radio, 0, wx.ALL, 4)
radio.Bind(wx.EVT_RADIOBUTTON, self.on_choice_orientation)
self.radios.append(radio)
szr.Add(vsizer, 0, wx.ALL | wx.EXPAND, 4)
tmp = wx.BoxSizer(wx.HORIZONTAL)
tmp.Add( wx.StaticText(self, -1, _('Slots: ')), 0, wx.ALL | wx.ALIGN_CENTER_VERTICAL, 3 )
self.num = wx.SpinCtrl(self, -1)
self.num.SetValue(1)
self.num.SetRange(0, 100)
tmp.Add(self.num, 1, wx.ALL, 3)
szr.Add(tmp, 0, wx.EXPAND)
self.checkbox_static = wx.CheckBox(self, -1, _('Has a Static Box:'))
compat.SetToolTip(self.checkbox_static, "Use wxStaticBoxSizer with box and label")
self.label = wx.TextCtrl(self, -1, "")
self.label.Enable(False)
self.checkbox_static.Bind(wx.EVT_CHECKBOX, self._set_active)
szr.Add(self.checkbox_static, 0, wx.ALL | wx.EXPAND, 4)
tmp = wx.BoxSizer(wx.HORIZONTAL)
tmp.Add(wx.StaticText(self, -1, _("Label: ")), 0, wx.ALIGN_CENTER)
tmp.Add(self.label, 1)
szr.Add(tmp, 0, wx.ALL | wx.EXPAND, 4)
if HAVE_WRAP_SIZER:
self.checkbox_wrap = wx.CheckBox(self, -1, _('Wraps around'))
compat.SetToolTip(self.checkbox_wrap, "Use wxWrapSizer")
self.checkbox_wrap.Bind(wx.EVT_CHECKBOX, self._set_active)
szr.Add(self.checkbox_wrap, 0, wx.ALL | wx.EXPAND, 4)
if to_dialog:
# option for 'StdDialogButtonSizer'
self.checkbox_dlgbutton = wx.CheckBox(self, -1, "StdDialogButtonSizer")
compat.SetToolTip(self.checkbox_dlgbutton, "Horizontal sizer for action buttons in dialogs")
self.checkbox_dlgbutton.Bind(wx.EVT_CHECKBOX, self.on_checkbox_dlgbutton)
szr.Add(self.checkbox_dlgbutton, 0, wx.ALL | wx.EXPAND, 4)
else:
self.checkbox_dlgbutton = None
# horizontal sizer for action buttons
hsizer = wx.StdDialogButtonSizer()
hsizer.Add( wx.Button(self, wx.ID_CANCEL, _('Cancel')), 1, wx.ALL, 5)
btn = wx.Button(self, wx.ID_OK, _('OK'))
btn.SetDefault()
hsizer.Add(btn, 1, wx.ALL, 5)
szr.Add(hsizer, 0, wx.EXPAND )
self.SetAutoLayout(1)
self.SetSizer(szr)
szr.Fit(self)
self.Layout()
def on_choice_orientation(self, event):
self.orientation = self.radios.index(event.GetEventObject())
self._set_active()
def on_checkbox_dlgbutton(self, event):
if event.IsChecked() and self.num.Value<2: self.num.SetValue(2)
self._set_active()
def _set_active(self, event=None):
# dynamically activate and deactivate controls
if HAVE_WRAP_SIZER:
can_be_wrap = not self.checkbox_static.IsChecked()
if self.checkbox_dlgbutton and self.checkbox_dlgbutton.IsChecked(): can_be_wrap = False
self.checkbox_wrap.Enable( can_be_wrap )
can_be_static = self.orientation<2
if HAVE_WRAP_SIZER and self.checkbox_wrap.IsChecked(): can_be_static = False
if self.checkbox_dlgbutton and self.checkbox_dlgbutton.IsChecked(): can_be_static = False
self.checkbox_static.Enable( can_be_static )
self.label.Enable( self.checkbox_static.IsChecked() )
if self.checkbox_dlgbutton:
can_be_dialogbutton_sizer = self.orientation==0 and not self.checkbox_static.IsChecked()
if HAVE_WRAP_SIZER and self.checkbox_wrap.IsChecked(): can_be_dialogbutton_sizer = False
self.checkbox_dlgbutton.Enable( can_be_dialogbutton_sizer )
self.radios[1].Enable( not self.checkbox_dlgbutton.IsChecked() )
def builder(parent, index):
"factory function for box sizers"
default_orient = None
if parent.IS_SIZER and parent.check_prop("orient") and parent.orient in (wx.HORIZONTAL, wx.VERTICAL):
default_orient = wx.HORIZONTAL if parent.orient==wx.VERTICAL else wx.VERTICAL
dialog = _SizerDialog(common.adding_window or parent, parent.toplevel_parent.WX_CLASS=="wxDialog", default_orient)
with misc.disable_stay_on_top(common.adding_window or parent):
res = dialog.ShowModal()
if dialog.checkbox_dlgbutton and dialog.checkbox_dlgbutton.IsChecked():
orientation = "StdDialogButtonSizer"
elif dialog.orientation==0:
orientation = wx.HORIZONTAL
else:
orientation = wx.VERTICAL
num = dialog.num.GetValue()
wrap = HAVE_WRAP_SIZER and dialog.checkbox_wrap.GetValue() or False
label = dialog.label.GetValue()
static = dialog.checkbox_static.GetValue()
dialog.Destroy()
if res != wx.ID_OK: return
with parent.frozen():
editor = _builder( parent, index, orientation, num, static, label, wrap )
return editor
def xml_builder(parser, base, name, parent, index):
"factory function to build EditBoxSizer objects from a XML file"
orientation = wx.VERTICAL # default value
if base == 'EditStaticBoxSizer':
return EditStaticBoxSizer(name, parent, index, orientation, '', 0)
if base == 'EditWrapSizer':
return EditWrapSizer(name, parent, index, orientation, 0)
if base == 'EditStdDialogButtonSizer':
return EditStdDialogButtonSizer(name, parent, index, 0)
return EditBoxSizer(name, parent, index, orientation, 0)
class _GridBuilderDialog(wx.Dialog):
def __init__(self, parent):
pos = wx.GetMousePosition()
wx.Dialog.__init__( self, misc.get_toplevel_parent(parent), -1, _('Select sizer type and attributes'), pos )
# the main sizer
sizer = wx.BoxSizer(wx.VERTICAL)
# type
choices = ["Grid", "FlexGrid", "GridBag"]
self.type_ = wx.RadioBox(self, -1, _('Type'), choices=choices, majorDimension=1)
sizer.Add(self.type_, 1, wx.ALL|wx.EXPAND, 3)
# layout
self.rows = wx.SpinCtrl(self, -1, "3")
self.cols = wx.SpinCtrl(self, -1, "3")
self.vgap = wx.SpinCtrl(self, -1, "0")
self.hgap = wx.SpinCtrl(self, -1, "0")
# grid sizer with the controls
gsizer = wx.FlexGridSizer(cols=2)
for label, control, tooltip in [("Rows", self.rows, 'Numbers of sizer rows'),
("Cols", self.cols, 'Numbers of sizer colums'),
("Vgap", self.vgap, 'Vertical extra space between all children'),
("Hgap", self.hgap, 'Horizontal extra space between all children')]:
gsizer.Add(wx.StaticText(self, -1, _(label)), 0, wx.ALL | wx.ALIGN_CENTER_VERTICAL, 5)
gsizer.Add(control, 0, wx.ALL | wx.EXPAND | wx.ALIGN_CENTER_VERTICAL, 3)
compat.SetToolTip( control, tooltip )
self.rows.SetFocus()
for ctrl in (self.rows, self.cols, self.hgap, self.vgap):
ctrl.SetSelection(-1, -1)
# static box sizer around the grid sizer
boxsizer = wx.StaticBoxSizer(wx.StaticBox(self, -1, _("Layout")), wx.VERTICAL)
boxsizer.Add(gsizer)
sizer.Add(boxsizer, 0, wx.EXPAND | wx.ALL, 3)
# horizontal sizer for action buttons
hsizer = wx.BoxSizer(wx.HORIZONTAL)
hsizer.Add( wx.Button(self, wx.ID_CANCEL, _('Cancel')), 1, wx.ALL, 5)
btn = wx.Button(self, wx.ID_OK, _('OK') )
btn.SetDefault()
hsizer.Add(btn, 1, wx.ALL, 5)
sizer.Add(hsizer, 0, wx.EXPAND )
self.SetAutoLayout(True)
self.SetSizer(sizer)
sizer.Fit(self)
self.Layout()
def grid_builder(parent, index):
"factory function for grid sizers"
#dialog = _GridBuilderDialog(parent)
dialog = _GridBuilderDialog(common.adding_window or parent)
with misc.disable_stay_on_top(common.adding_window or parent):
res = dialog.ShowModal()
rows = dialog.rows.GetValue()
cols = dialog.cols.GetValue()
vgap = dialog.vgap.GetValue()
hgap = dialog.hgap.GetValue()
type_ = dialog.type_.GetStringSelection()
dialog.Destroy()
if res != wx.ID_OK: return
name = parent.toplevel_parent.get_next_contained_name('grid_sizer_%d')
if type_=="Grid":
constructor = EditGridSizer
elif type_=="FlexGrid":
constructor = EditFlexGridSizer
elif type_=="GridBag":
constructor = EditGridBagSizer
with parent.frozen():
editor = constructor(name, parent, index, rows, cols, vgap, hgap)
if parent.IS_SIZER:
editor.properties['flag'].set('wxEXPAND')
# add the slots
for i in range(rows*cols):
editor._add_slot()
if parent.widget: editor.create()
return editor
def grid_xml_builder(parser, base, name, parent, index):
"factory function to build EditGridSizer objects from a XML file"
if base == 'EditGridSizer':
return EditGridSizer(name, parent, index, rows=0, cols=0)
elif base == 'EditFlexGridSizer':
return EditFlexGridSizer(name, parent, index, rows=0, cols=0)
elif base == 'EditGridBagSizer':
return EditGridBagSizer(name, parent, index, rows=0, cols=0)
def init_all():
"Module initialization function: returns dict w. key 'Sizers' and an assigned list of buttons for the main palette"
common.widgets['EditBoxSizer'] = builder
common.widgets['EditGridSizer'] = grid_builder
common.widget_classes['EditBoxSizer'] = EditBoxSizer
common.widget_classes['EditStdDialogButtonSizer'] = EditStdDialogButtonSizer
if HAVE_WRAP_SIZER:
common.widget_classes['EditWrapSizer'] = EditWrapSizer
common.widget_classes['EditStaticBoxSizer'] = EditStaticBoxSizer
common.widget_classes['EditGridSizer'] = EditGridSizer
common.widget_classes['EditFlexGridSizer'] = EditFlexGridSizer
common.widget_classes['EditGridBagSizer'] = EditGridBagSizer
common.widgets_from_xml['EditBoxSizer'] = xml_builder
common.widgets_from_xml['EditStdDialogButtonSizer'] = xml_builder
if HAVE_WRAP_SIZER:
common.widgets_from_xml['EditWrapSizer'] = xml_builder
common.widgets_from_xml['EditStaticBoxSizer'] = xml_builder
common.widgets_from_xml['EditGridSizer'] = grid_xml_builder
common.widgets_from_xml['EditFlexGridSizer'] = grid_xml_builder
common.widgets_from_xml['EditGridBagSizer'] = grid_xml_builder
import os.path
from tree import WidgetTree
if HAVE_WRAP_SIZER:
WidgetTree.images['EditWrapSizer'] = os.path.join( config.icons_path, 'wrap_sizer_h.png')
WidgetTree.images['EditHorizontalWrapSizer'] = os.path.join( config.icons_path, 'wrap_sizer_h.png')
WidgetTree.images['EditVerticalWrapSizer'] = os.path.join( config.icons_path, 'wrap_sizer.png')
WidgetTree.images['EditStaticBoxSizer'] = os.path.join( config.icons_path, 'sizer.png')
WidgetTree.images['EditFlexGridSizer'] = os.path.join( config.icons_path, 'flexgrid_sizer.png' )
WidgetTree.images['EditGridBagSizer'] = os.path.join( config.icons_path, 'gridbag_sizer.png' )
WidgetTree.images['EditVerticalSizer'] = os.path.join( config.icons_path, 'sizer_v.png' )
WidgetTree.images['EditHorizontalSizer'] = os.path.join( config.icons_path, 'sizer_h.png' )
WidgetTree.images['EditStdDialogButtonSizer'] = os.path.join( config.icons_path, 'button_sizer.png' )
WidgetTree.images['EditVerticalSizerSlot'] = os.path.join( config.icons_path, 'sizer_slot_v.png' )
WidgetTree.images['EditHorizontalSizerSlot'] = os.path.join( config.icons_path, 'sizer_slot_h.png' )
WidgetTree.images['EditSizerSlot'] = os.path.join( config.icons_path, 'sizer_slot.png' )
WidgetTree.images['EditSlot'] = os.path.join( config.icons_path, 'slot.png' )
ret = {'Sizers': [
common.make_object_button('EditBoxSizer', 'sizer.png'),
common.make_object_button('EditGridSizer', 'grid_sizer.png')] }
return ret
|