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
|
#include <PythonQt.h>
#include <QAbstractTextDocumentLayout>
#include <QColor>
#include <QImage>
#include <QObject>
#include <QPainterPath>
#include <QPixmap>
#include <QRect>
#include <QSize>
#include <QTextEdit>
#include <QVarLengthArray>
#include <QVariant>
#include <QWidget>
#include <qabstractanimation.h>
#include <qabstractbutton.h>
#include <qabstractstate.h>
#include <qaction.h>
#include <qapplication.h>
#include <qbitmap.h>
#include <qbrush.h>
#include <qbytearray.h>
#include <qcolor.h>
#include <qcoreevent.h>
#include <qcursor.h>
#include <qdatastream.h>
#include <qdialog.h>
#include <qevent.h>
#include <qfont.h>
#include <qgesture.h>
#include <qgraphicseffect.h>
#include <qgraphicsproxywidget.h>
#include <qicon.h>
#include <qimage.h>
#include <qinputcontext.h>
#include <qiodevice.h>
#include <qkeysequence.h>
#include <qlayout.h>
#include <qline.h>
#include <qlist.h>
#include <qlocale.h>
#include <qmargins.h>
#include <qmatrix.h>
#include <qmatrix4x4.h>
#include <qmdiarea.h>
#include <qmdisubwindow.h>
#include <qmenu.h>
#include <qmenubar.h>
#include <qmessagebox.h>
#include <qmimedata.h>
#include <qmotifstyle.h>
#include <qmouseeventtransition.h>
#include <qmovie.h>
#include <qobject.h>
#include <qpagesetupdialog.h>
#include <qpaintdevice.h>
#include <qpaintengine.h>
#include <qpainter.h>
#include <qpainterpath.h>
#include <qpalette.h>
#include <qpen.h>
#include <qpicture.h>
#include <qpictureformatplugin.h>
#include <qpixmap.h>
#include <qpixmapcache.h>
#include <qplaintextedit.h>
#include <qplastiquestyle.h>
#include <qpoint.h>
#include <qpolygon.h>
#include <qprinter.h>
#include <qpushbutton.h>
#include <qquaternion.h>
#include <qrect.h>
#include <qregion.h>
#include <qscrollbar.h>
#include <qsize.h>
#include <qsizepolicy.h>
#include <qstate.h>
#include <qstatemachine.h>
#include <qstringlist.h>
#include <qstyle.h>
#include <qstyleoption.h>
#include <qtextcursor.h>
#include <qtextdocument.h>
#include <qtextformat.h>
#include <qtextobject.h>
#include <qtransform.h>
#include <qurl.h>
#include <qvector.h>
#include <qvector3d.h>
#include <qvector4d.h>
#include <qwidget.h>
class PythonQtWrapper_QMatrix4x4 : public QObject
{ Q_OBJECT
public:
public slots:
QMatrix4x4* new_QMatrix4x4();
QMatrix4x4* new_QMatrix4x4(const QMatrix& matrix);
QMatrix4x4* new_QMatrix4x4(const QTransform& transform);
QMatrix4x4* new_QMatrix4x4(const qreal* values);
QMatrix4x4* new_QMatrix4x4(const qreal* values, int cols, int rows);
QMatrix4x4* new_QMatrix4x4(qreal m11, qreal m12, qreal m13, qreal m14, qreal m21, qreal m22, qreal m23, qreal m24, qreal m31, qreal m32, qreal m33, qreal m34, qreal m41, qreal m42, qreal m43, qreal m44);
QMatrix4x4* new_QMatrix4x4(const QMatrix4x4& other) {
QMatrix4x4* a = new QMatrix4x4();
*((QMatrix4x4*)a) = other;
return a; }
void delete_QMatrix4x4(QMatrix4x4* obj) { delete obj; }
QVector4D column(QMatrix4x4* theWrappedObject, int index) const;
const qreal* constData(QMatrix4x4* theWrappedObject) const;
void copyDataTo(QMatrix4x4* theWrappedObject, qreal* values) const;
qreal* data(QMatrix4x4* theWrappedObject);
qreal determinant(QMatrix4x4* theWrappedObject) const;
void fill(QMatrix4x4* theWrappedObject, qreal value);
void flipCoordinates(QMatrix4x4* theWrappedObject);
void frustum(QMatrix4x4* theWrappedObject, qreal left, qreal right, qreal bottom, qreal top, qreal nearPlane, qreal farPlane);
QMatrix4x4 inverted(QMatrix4x4* theWrappedObject, bool* invertible = 0) const;
bool isIdentity(QMatrix4x4* theWrappedObject) const;
void lookAt(QMatrix4x4* theWrappedObject, const QVector3D& eye, const QVector3D& center, const QVector3D& up);
QPoint map(QMatrix4x4* theWrappedObject, const QPoint& point) const;
QPointF map(QMatrix4x4* theWrappedObject, const QPointF& point) const;
QVector3D map(QMatrix4x4* theWrappedObject, const QVector3D& point) const;
QVector4D map(QMatrix4x4* theWrappedObject, const QVector4D& point) const;
QRect mapRect(QMatrix4x4* theWrappedObject, const QRect& rect) const;
QRectF mapRect(QMatrix4x4* theWrappedObject, const QRectF& rect) const;
QVector3D mapVector(QMatrix4x4* theWrappedObject, const QVector3D& vector) const;
bool __ne__(QMatrix4x4* theWrappedObject, const QMatrix4x4& other) const;
qreal* operator_cast_(QMatrix4x4* theWrappedObject, int row, int column);
QMatrix4x4 __mul__(QMatrix4x4* theWrappedObject, const QMatrix4x4& m2);
QPoint __mul__(QMatrix4x4* theWrappedObject, const QPoint& point);
QPointF __mul__(QMatrix4x4* theWrappedObject, const QPointF& point);
QVector3D __mul__(QMatrix4x4* theWrappedObject, const QVector3D& vector);
QVector4D __mul__(QMatrix4x4* theWrappedObject, const QVector4D& vector);
QMatrix4x4 __mul__(QMatrix4x4* theWrappedObject, qreal factor);
QMatrix4x4* __imul__(QMatrix4x4* theWrappedObject, const QMatrix4x4& other);
QMatrix4x4* __imul__(QMatrix4x4* theWrappedObject, qreal factor);
QMatrix4x4 __add__(QMatrix4x4* theWrappedObject, const QMatrix4x4& m2);
QMatrix4x4* __iadd__(QMatrix4x4* theWrappedObject, const QMatrix4x4& other);
QMatrix4x4 __sub__(QMatrix4x4* theWrappedObject, const QMatrix4x4& m2);
QMatrix4x4* __isub__(QMatrix4x4* theWrappedObject, const QMatrix4x4& other);
QMatrix4x4 __div__(QMatrix4x4* theWrappedObject, qreal divisor);
QMatrix4x4* __idiv__(QMatrix4x4* theWrappedObject, qreal divisor);
void writeTo(QMatrix4x4* theWrappedObject, QDataStream& arg__1);
bool __eq__(QMatrix4x4* theWrappedObject, const QMatrix4x4& other) const;
void readFrom(QMatrix4x4* theWrappedObject, QDataStream& arg__1);
void optimize(QMatrix4x4* theWrappedObject);
void ortho(QMatrix4x4* theWrappedObject, const QRect& rect);
void ortho(QMatrix4x4* theWrappedObject, const QRectF& rect);
void ortho(QMatrix4x4* theWrappedObject, qreal left, qreal right, qreal bottom, qreal top, qreal nearPlane, qreal farPlane);
void perspective(QMatrix4x4* theWrappedObject, qreal angle, qreal aspect, qreal nearPlane, qreal farPlane);
void rotate(QMatrix4x4* theWrappedObject, const QQuaternion& quaternion);
void rotate(QMatrix4x4* theWrappedObject, qreal angle, const QVector3D& vector);
void rotate(QMatrix4x4* theWrappedObject, qreal angle, qreal x, qreal y, qreal z = 0.0f);
QVector4D row(QMatrix4x4* theWrappedObject, int index) const;
void scale(QMatrix4x4* theWrappedObject, const QVector3D& vector);
void scale(QMatrix4x4* theWrappedObject, qreal factor);
void scale(QMatrix4x4* theWrappedObject, qreal x, qreal y);
void scale(QMatrix4x4* theWrappedObject, qreal x, qreal y, qreal z);
void setColumn(QMatrix4x4* theWrappedObject, int index, const QVector4D& value);
void setRow(QMatrix4x4* theWrappedObject, int index, const QVector4D& value);
void setToIdentity(QMatrix4x4* theWrappedObject);
QMatrix toAffine(QMatrix4x4* theWrappedObject) const;
QTransform toTransform(QMatrix4x4* theWrappedObject) const;
QTransform toTransform(QMatrix4x4* theWrappedObject, qreal distanceToPlane) const;
void translate(QMatrix4x4* theWrappedObject, const QVector3D& vector);
void translate(QMatrix4x4* theWrappedObject, qreal x, qreal y);
void translate(QMatrix4x4* theWrappedObject, qreal x, qreal y, qreal z);
QMatrix4x4 transposed(QMatrix4x4* theWrappedObject) const;
QString py_toString(QMatrix4x4*);
};
class PythonQtShell_QMdiArea : public QMdiArea
{
public:
PythonQtShell_QMdiArea(QWidget* parent = 0):QMdiArea(parent),_wrapper(NULL) {};
virtual void actionEvent(QActionEvent* arg__1);
virtual void changeEvent(QEvent* arg__1);
virtual void childEvent(QChildEvent* childEvent);
virtual void closeEvent(QCloseEvent* arg__1);
virtual void contextMenuEvent(QContextMenuEvent* arg__1);
virtual void customEvent(QEvent* arg__1);
virtual int devType() const;
virtual void dragEnterEvent(QDragEnterEvent* arg__1);
virtual void dragLeaveEvent(QDragLeaveEvent* arg__1);
virtual void dragMoveEvent(QDragMoveEvent* arg__1);
virtual void dropEvent(QDropEvent* arg__1);
virtual void enterEvent(QEvent* arg__1);
virtual bool event(QEvent* event);
virtual bool eventFilter(QObject* object, QEvent* event);
virtual void focusInEvent(QFocusEvent* arg__1);
virtual bool focusNextPrevChild(bool next);
virtual void focusOutEvent(QFocusEvent* arg__1);
virtual int heightForWidth(int arg__1) const;
virtual void hideEvent(QHideEvent* arg__1);
virtual void inputMethodEvent(QInputMethodEvent* arg__1);
virtual QVariant inputMethodQuery(Qt::InputMethodQuery arg__1) const;
virtual void keyPressEvent(QKeyEvent* arg__1);
virtual void keyReleaseEvent(QKeyEvent* arg__1);
virtual void languageChange();
virtual void leaveEvent(QEvent* arg__1);
virtual int metric(QPaintDevice::PaintDeviceMetric arg__1) const;
virtual void mouseDoubleClickEvent(QMouseEvent* arg__1);
virtual void mouseMoveEvent(QMouseEvent* arg__1);
virtual void mousePressEvent(QMouseEvent* arg__1);
virtual void mouseReleaseEvent(QMouseEvent* arg__1);
virtual void moveEvent(QMoveEvent* arg__1);
virtual QPaintEngine* paintEngine() const;
virtual void paintEvent(QPaintEvent* paintEvent);
virtual void resizeEvent(QResizeEvent* resizeEvent);
virtual void scrollContentsBy(int dx, int dy);
virtual void showEvent(QShowEvent* showEvent);
virtual void tabletEvent(QTabletEvent* arg__1);
virtual void timerEvent(QTimerEvent* timerEvent);
virtual bool viewportEvent(QEvent* event);
virtual void wheelEvent(QWheelEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QMdiArea : public QMdiArea
{ public:
inline void promoted_childEvent(QChildEvent* childEvent) { QMdiArea::childEvent(childEvent); }
inline bool promoted_event(QEvent* event) { return QMdiArea::event(event); }
inline bool promoted_eventFilter(QObject* object, QEvent* event) { return QMdiArea::eventFilter(object, event); }
inline void promoted_paintEvent(QPaintEvent* paintEvent) { QMdiArea::paintEvent(paintEvent); }
inline void promoted_resizeEvent(QResizeEvent* resizeEvent) { QMdiArea::resizeEvent(resizeEvent); }
inline void promoted_scrollContentsBy(int dx, int dy) { QMdiArea::scrollContentsBy(dx, dy); }
inline void promoted_showEvent(QShowEvent* showEvent) { QMdiArea::showEvent(showEvent); }
inline void promoted_timerEvent(QTimerEvent* timerEvent) { QMdiArea::timerEvent(timerEvent); }
inline bool promoted_viewportEvent(QEvent* event) { return QMdiArea::viewportEvent(event); }
};
class PythonQtWrapper_QMdiArea : public QObject
{ Q_OBJECT
public:
Q_ENUMS(AreaOption )
Q_FLAGS(AreaOptions )
enum AreaOption{
DontMaximizeSubWindowOnActivation = QMdiArea::DontMaximizeSubWindowOnActivation};
Q_DECLARE_FLAGS(AreaOptions, AreaOption)
public slots:
QMdiArea* new_QMdiArea(QWidget* parent = 0);
void delete_QMdiArea(QMdiArea* obj) { delete obj; }
QMdiArea::WindowOrder activationOrder(QMdiArea* theWrappedObject) const;
QMdiSubWindow* activeSubWindow(QMdiArea* theWrappedObject) const;
QMdiSubWindow* addSubWindow(QMdiArea* theWrappedObject, QWidget* widget, Qt::WindowFlags flags = 0);
QBrush background(QMdiArea* theWrappedObject) const;
void childEvent(QMdiArea* theWrappedObject, QChildEvent* childEvent);
QMdiSubWindow* currentSubWindow(QMdiArea* theWrappedObject) const;
bool documentMode(QMdiArea* theWrappedObject) const;
bool event(QMdiArea* theWrappedObject, QEvent* event);
bool eventFilter(QMdiArea* theWrappedObject, QObject* object, QEvent* event);
QSize minimumSizeHint(QMdiArea* theWrappedObject) const;
void paintEvent(QMdiArea* theWrappedObject, QPaintEvent* paintEvent);
void removeSubWindow(QMdiArea* theWrappedObject, QWidget* widget);
void resizeEvent(QMdiArea* theWrappedObject, QResizeEvent* resizeEvent);
void scrollContentsBy(QMdiArea* theWrappedObject, int dx, int dy);
void setActivationOrder(QMdiArea* theWrappedObject, QMdiArea::WindowOrder order);
void setBackground(QMdiArea* theWrappedObject, const QBrush& background);
void setDocumentMode(QMdiArea* theWrappedObject, bool enabled);
void setOption(QMdiArea* theWrappedObject, QMdiArea::AreaOption option, bool on = true);
void setTabPosition(QMdiArea* theWrappedObject, QTabWidget::TabPosition position);
void setTabShape(QMdiArea* theWrappedObject, QTabWidget::TabShape shape);
void setViewMode(QMdiArea* theWrappedObject, QMdiArea::ViewMode mode);
void showEvent(QMdiArea* theWrappedObject, QShowEvent* showEvent);
QSize sizeHint(QMdiArea* theWrappedObject) const;
QList<QMdiSubWindow* > subWindowList(QMdiArea* theWrappedObject, QMdiArea::WindowOrder order = QMdiArea::CreationOrder) const;
QTabWidget::TabPosition tabPosition(QMdiArea* theWrappedObject) const;
QTabWidget::TabShape tabShape(QMdiArea* theWrappedObject) const;
bool testOption(QMdiArea* theWrappedObject, QMdiArea::AreaOption opton) const;
void timerEvent(QMdiArea* theWrappedObject, QTimerEvent* timerEvent);
QMdiArea::ViewMode viewMode(QMdiArea* theWrappedObject) const;
bool viewportEvent(QMdiArea* theWrappedObject, QEvent* event);
};
class PythonQtShell_QMdiSubWindow : public QMdiSubWindow
{
public:
PythonQtShell_QMdiSubWindow(QWidget* parent = 0, Qt::WindowFlags flags = 0):QMdiSubWindow(parent, flags),_wrapper(NULL) {};
virtual void actionEvent(QActionEvent* arg__1);
virtual void changeEvent(QEvent* changeEvent);
virtual void childEvent(QChildEvent* childEvent);
virtual void closeEvent(QCloseEvent* closeEvent);
virtual void contextMenuEvent(QContextMenuEvent* contextMenuEvent);
virtual void customEvent(QEvent* arg__1);
virtual int devType() const;
virtual void dragEnterEvent(QDragEnterEvent* arg__1);
virtual void dragLeaveEvent(QDragLeaveEvent* arg__1);
virtual void dragMoveEvent(QDragMoveEvent* arg__1);
virtual void dropEvent(QDropEvent* arg__1);
virtual void enterEvent(QEvent* arg__1);
virtual bool event(QEvent* event);
virtual bool eventFilter(QObject* object, QEvent* event);
virtual void focusInEvent(QFocusEvent* focusInEvent);
virtual bool focusNextPrevChild(bool next);
virtual void focusOutEvent(QFocusEvent* focusOutEvent);
virtual int heightForWidth(int arg__1) const;
virtual void hideEvent(QHideEvent* hideEvent);
virtual void inputMethodEvent(QInputMethodEvent* arg__1);
virtual QVariant inputMethodQuery(Qt::InputMethodQuery arg__1) const;
virtual void keyPressEvent(QKeyEvent* keyEvent);
virtual void keyReleaseEvent(QKeyEvent* arg__1);
virtual void languageChange();
virtual void leaveEvent(QEvent* leaveEvent);
virtual int metric(QPaintDevice::PaintDeviceMetric arg__1) const;
virtual void mouseDoubleClickEvent(QMouseEvent* mouseEvent);
virtual void mouseMoveEvent(QMouseEvent* mouseEvent);
virtual void mousePressEvent(QMouseEvent* mouseEvent);
virtual void mouseReleaseEvent(QMouseEvent* mouseEvent);
virtual void moveEvent(QMoveEvent* moveEvent);
virtual QPaintEngine* paintEngine() const;
virtual void paintEvent(QPaintEvent* paintEvent);
virtual void resizeEvent(QResizeEvent* resizeEvent);
virtual void showEvent(QShowEvent* showEvent);
virtual void tabletEvent(QTabletEvent* arg__1);
virtual void timerEvent(QTimerEvent* timerEvent);
virtual void wheelEvent(QWheelEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QMdiSubWindow : public QMdiSubWindow
{ public:
inline void promoted_changeEvent(QEvent* changeEvent) { QMdiSubWindow::changeEvent(changeEvent); }
inline void promoted_childEvent(QChildEvent* childEvent) { QMdiSubWindow::childEvent(childEvent); }
inline void promoted_closeEvent(QCloseEvent* closeEvent) { QMdiSubWindow::closeEvent(closeEvent); }
inline void promoted_contextMenuEvent(QContextMenuEvent* contextMenuEvent) { QMdiSubWindow::contextMenuEvent(contextMenuEvent); }
inline bool promoted_event(QEvent* event) { return QMdiSubWindow::event(event); }
inline bool promoted_eventFilter(QObject* object, QEvent* event) { return QMdiSubWindow::eventFilter(object, event); }
inline void promoted_focusInEvent(QFocusEvent* focusInEvent) { QMdiSubWindow::focusInEvent(focusInEvent); }
inline void promoted_focusOutEvent(QFocusEvent* focusOutEvent) { QMdiSubWindow::focusOutEvent(focusOutEvent); }
inline void promoted_hideEvent(QHideEvent* hideEvent) { QMdiSubWindow::hideEvent(hideEvent); }
inline void promoted_keyPressEvent(QKeyEvent* keyEvent) { QMdiSubWindow::keyPressEvent(keyEvent); }
inline void promoted_leaveEvent(QEvent* leaveEvent) { QMdiSubWindow::leaveEvent(leaveEvent); }
inline void promoted_mouseDoubleClickEvent(QMouseEvent* mouseEvent) { QMdiSubWindow::mouseDoubleClickEvent(mouseEvent); }
inline void promoted_mouseMoveEvent(QMouseEvent* mouseEvent) { QMdiSubWindow::mouseMoveEvent(mouseEvent); }
inline void promoted_mousePressEvent(QMouseEvent* mouseEvent) { QMdiSubWindow::mousePressEvent(mouseEvent); }
inline void promoted_mouseReleaseEvent(QMouseEvent* mouseEvent) { QMdiSubWindow::mouseReleaseEvent(mouseEvent); }
inline void promoted_moveEvent(QMoveEvent* moveEvent) { QMdiSubWindow::moveEvent(moveEvent); }
inline void promoted_paintEvent(QPaintEvent* paintEvent) { QMdiSubWindow::paintEvent(paintEvent); }
inline void promoted_resizeEvent(QResizeEvent* resizeEvent) { QMdiSubWindow::resizeEvent(resizeEvent); }
inline void promoted_showEvent(QShowEvent* showEvent) { QMdiSubWindow::showEvent(showEvent); }
inline void promoted_timerEvent(QTimerEvent* timerEvent) { QMdiSubWindow::timerEvent(timerEvent); }
};
class PythonQtWrapper_QMdiSubWindow : public QObject
{ Q_OBJECT
public:
Q_ENUMS(SubWindowOption )
Q_FLAGS(SubWindowOptions )
enum SubWindowOption{
AllowOutsideAreaHorizontally = QMdiSubWindow::AllowOutsideAreaHorizontally, AllowOutsideAreaVertically = QMdiSubWindow::AllowOutsideAreaVertically, RubberBandResize = QMdiSubWindow::RubberBandResize, RubberBandMove = QMdiSubWindow::RubberBandMove};
Q_DECLARE_FLAGS(SubWindowOptions, SubWindowOption)
public slots:
QMdiSubWindow* new_QMdiSubWindow(QWidget* parent = 0, Qt::WindowFlags flags = 0);
void delete_QMdiSubWindow(QMdiSubWindow* obj) { delete obj; }
void changeEvent(QMdiSubWindow* theWrappedObject, QEvent* changeEvent);
void childEvent(QMdiSubWindow* theWrappedObject, QChildEvent* childEvent);
void closeEvent(QMdiSubWindow* theWrappedObject, QCloseEvent* closeEvent);
void contextMenuEvent(QMdiSubWindow* theWrappedObject, QContextMenuEvent* contextMenuEvent);
bool event(QMdiSubWindow* theWrappedObject, QEvent* event);
bool eventFilter(QMdiSubWindow* theWrappedObject, QObject* object, QEvent* event);
void focusInEvent(QMdiSubWindow* theWrappedObject, QFocusEvent* focusInEvent);
void focusOutEvent(QMdiSubWindow* theWrappedObject, QFocusEvent* focusOutEvent);
void hideEvent(QMdiSubWindow* theWrappedObject, QHideEvent* hideEvent);
bool isShaded(QMdiSubWindow* theWrappedObject) const;
void keyPressEvent(QMdiSubWindow* theWrappedObject, QKeyEvent* keyEvent);
int keyboardPageStep(QMdiSubWindow* theWrappedObject) const;
int keyboardSingleStep(QMdiSubWindow* theWrappedObject) const;
void leaveEvent(QMdiSubWindow* theWrappedObject, QEvent* leaveEvent);
QWidget* maximizedButtonsWidget(QMdiSubWindow* theWrappedObject) const;
QWidget* maximizedSystemMenuIconWidget(QMdiSubWindow* theWrappedObject) const;
QMdiArea* mdiArea(QMdiSubWindow* theWrappedObject) const;
QSize minimumSizeHint(QMdiSubWindow* theWrappedObject) const;
void mouseDoubleClickEvent(QMdiSubWindow* theWrappedObject, QMouseEvent* mouseEvent);
void mouseMoveEvent(QMdiSubWindow* theWrappedObject, QMouseEvent* mouseEvent);
void mousePressEvent(QMdiSubWindow* theWrappedObject, QMouseEvent* mouseEvent);
void mouseReleaseEvent(QMdiSubWindow* theWrappedObject, QMouseEvent* mouseEvent);
void moveEvent(QMdiSubWindow* theWrappedObject, QMoveEvent* moveEvent);
void paintEvent(QMdiSubWindow* theWrappedObject, QPaintEvent* paintEvent);
void resizeEvent(QMdiSubWindow* theWrappedObject, QResizeEvent* resizeEvent);
void setKeyboardPageStep(QMdiSubWindow* theWrappedObject, int step);
void setKeyboardSingleStep(QMdiSubWindow* theWrappedObject, int step);
void setOption(QMdiSubWindow* theWrappedObject, QMdiSubWindow::SubWindowOption option, bool on = true);
void setSystemMenu(QMdiSubWindow* theWrappedObject, QMenu* systemMenu);
void setWidget(QMdiSubWindow* theWrappedObject, QWidget* widget);
void showEvent(QMdiSubWindow* theWrappedObject, QShowEvent* showEvent);
QSize sizeHint(QMdiSubWindow* theWrappedObject) const;
QMenu* systemMenu(QMdiSubWindow* theWrappedObject) const;
bool testOption(QMdiSubWindow* theWrappedObject, QMdiSubWindow::SubWindowOption arg__1) const;
void timerEvent(QMdiSubWindow* theWrappedObject, QTimerEvent* timerEvent);
QWidget* widget(QMdiSubWindow* theWrappedObject) const;
};
class PythonQtShell_QMenu : public QMenu
{
public:
PythonQtShell_QMenu(QWidget* parent = 0):QMenu(parent),_wrapper(NULL) {};
PythonQtShell_QMenu(const QString& title, QWidget* parent = 0):QMenu(title, parent),_wrapper(NULL) {};
virtual void actionEvent(QActionEvent* arg__1);
virtual void changeEvent(QEvent* arg__1);
virtual void childEvent(QChildEvent* arg__1);
virtual void closeEvent(QCloseEvent* arg__1);
virtual void contextMenuEvent(QContextMenuEvent* arg__1);
virtual void customEvent(QEvent* arg__1);
virtual int devType() const;
virtual void dragEnterEvent(QDragEnterEvent* arg__1);
virtual void dragLeaveEvent(QDragLeaveEvent* arg__1);
virtual void dragMoveEvent(QDragMoveEvent* arg__1);
virtual void dropEvent(QDropEvent* arg__1);
virtual void enterEvent(QEvent* arg__1);
virtual bool event(QEvent* arg__1);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
virtual void focusInEvent(QFocusEvent* arg__1);
virtual bool focusNextPrevChild(bool next);
virtual void focusOutEvent(QFocusEvent* arg__1);
virtual int heightForWidth(int arg__1) const;
virtual void hideEvent(QHideEvent* arg__1);
virtual void inputMethodEvent(QInputMethodEvent* arg__1);
virtual QVariant inputMethodQuery(Qt::InputMethodQuery arg__1) const;
virtual void keyPressEvent(QKeyEvent* arg__1);
virtual void keyReleaseEvent(QKeyEvent* arg__1);
virtual void languageChange();
virtual void leaveEvent(QEvent* arg__1);
virtual int metric(QPaintDevice::PaintDeviceMetric arg__1) const;
virtual QSize minimumSizeHint() const;
virtual void mouseDoubleClickEvent(QMouseEvent* arg__1);
virtual void mouseMoveEvent(QMouseEvent* arg__1);
virtual void mousePressEvent(QMouseEvent* arg__1);
virtual void mouseReleaseEvent(QMouseEvent* arg__1);
virtual void moveEvent(QMoveEvent* arg__1);
virtual QPaintEngine* paintEngine() const;
virtual void paintEvent(QPaintEvent* arg__1);
virtual void resizeEvent(QResizeEvent* arg__1);
virtual void showEvent(QShowEvent* arg__1);
virtual void tabletEvent(QTabletEvent* arg__1);
virtual void timerEvent(QTimerEvent* arg__1);
virtual void wheelEvent(QWheelEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QMenu : public QMenu
{ public:
inline void promoted_actionEvent(QActionEvent* arg__1) { QMenu::actionEvent(arg__1); }
inline void promoted_changeEvent(QEvent* arg__1) { QMenu::changeEvent(arg__1); }
inline void promoted_enterEvent(QEvent* arg__1) { QMenu::enterEvent(arg__1); }
inline bool promoted_event(QEvent* arg__1) { return QMenu::event(arg__1); }
inline bool promoted_focusNextPrevChild(bool next) { return QMenu::focusNextPrevChild(next); }
inline void promoted_hideEvent(QHideEvent* arg__1) { QMenu::hideEvent(arg__1); }
inline void promoted_keyPressEvent(QKeyEvent* arg__1) { QMenu::keyPressEvent(arg__1); }
inline void promoted_leaveEvent(QEvent* arg__1) { QMenu::leaveEvent(arg__1); }
inline void promoted_mouseMoveEvent(QMouseEvent* arg__1) { QMenu::mouseMoveEvent(arg__1); }
inline void promoted_mousePressEvent(QMouseEvent* arg__1) { QMenu::mousePressEvent(arg__1); }
inline void promoted_mouseReleaseEvent(QMouseEvent* arg__1) { QMenu::mouseReleaseEvent(arg__1); }
inline void promoted_paintEvent(QPaintEvent* arg__1) { QMenu::paintEvent(arg__1); }
inline void promoted_timerEvent(QTimerEvent* arg__1) { QMenu::timerEvent(arg__1); }
inline void promoted_wheelEvent(QWheelEvent* arg__1) { QMenu::wheelEvent(arg__1); }
};
class PythonQtWrapper_QMenu : public QObject
{ Q_OBJECT
public:
public slots:
QMenu* new_QMenu(QWidget* parent = 0);
QMenu* new_QMenu(const QString& title, QWidget* parent = 0);
void delete_QMenu(QMenu* obj) { delete obj; }
QAction* actionAt(QMenu* theWrappedObject, const QPoint& arg__1) const;
void actionEvent(QMenu* theWrappedObject, QActionEvent* arg__1);
QRect actionGeometry(QMenu* theWrappedObject, QAction* arg__1) const;
QAction* activeAction(QMenu* theWrappedObject) const;
void addAction(QMenu* theWrappedObject, QAction* action);
QAction* addAction(QMenu* theWrappedObject, const QIcon& icon, const QString& text);
QAction* addAction(QMenu* theWrappedObject, const QIcon& icon, const QString& text, const QObject* receiver, const char* member, const QKeySequence& shortcut = 0);
QAction* addAction(QMenu* theWrappedObject, const QString& text);
QAction* addAction(QMenu* theWrappedObject, const QString& text, const QObject* receiver, const char* member, const QKeySequence& shortcut = 0);
QAction* addMenu(QMenu* theWrappedObject, QMenu* menu);
QMenu* addMenu(QMenu* theWrappedObject, const QIcon& icon, const QString& title);
QMenu* addMenu(QMenu* theWrappedObject, const QString& title);
QAction* addSeparator(QMenu* theWrappedObject);
void changeEvent(QMenu* theWrappedObject, QEvent* arg__1);
void clear(QMenu* theWrappedObject);
QAction* defaultAction(QMenu* theWrappedObject) const;
void enterEvent(QMenu* theWrappedObject, QEvent* arg__1);
bool event(QMenu* theWrappedObject, QEvent* arg__1);
QAction* exec(QMenu* theWrappedObject);
QAction* static_QMenu_exec(QList<QAction* > actions, const QPoint& pos, QAction* at = 0);
QAction* static_QMenu_exec(QList<QAction* > actions, const QPoint& pos, QAction* at, QWidget* parent);
QAction* exec(QMenu* theWrappedObject, const QPoint& pos, QAction* at = 0);
bool focusNextPrevChild(QMenu* theWrappedObject, bool next);
void hideEvent(QMenu* theWrappedObject, QHideEvent* arg__1);
void hideTearOffMenu(QMenu* theWrappedObject);
QIcon icon(QMenu* theWrappedObject) const;
QAction* insertMenu(QMenu* theWrappedObject, QAction* before, QMenu* menu);
QAction* insertSeparator(QMenu* theWrappedObject, QAction* before);
bool isEmpty(QMenu* theWrappedObject) const;
bool isTearOffEnabled(QMenu* theWrappedObject) const;
bool isTearOffMenuVisible(QMenu* theWrappedObject) const;
void keyPressEvent(QMenu* theWrappedObject, QKeyEvent* arg__1);
void leaveEvent(QMenu* theWrappedObject, QEvent* arg__1);
QAction* menuAction(QMenu* theWrappedObject) const;
void mouseMoveEvent(QMenu* theWrappedObject, QMouseEvent* arg__1);
void mousePressEvent(QMenu* theWrappedObject, QMouseEvent* arg__1);
void mouseReleaseEvent(QMenu* theWrappedObject, QMouseEvent* arg__1);
void paintEvent(QMenu* theWrappedObject, QPaintEvent* arg__1);
void popup(QMenu* theWrappedObject, const QPoint& pos, QAction* at = 0);
bool separatorsCollapsible(QMenu* theWrappedObject) const;
void setActiveAction(QMenu* theWrappedObject, QAction* act);
void setDefaultAction(QMenu* theWrappedObject, QAction* arg__1);
void setIcon(QMenu* theWrappedObject, const QIcon& icon);
void setSeparatorsCollapsible(QMenu* theWrappedObject, bool collapse);
void setTearOffEnabled(QMenu* theWrappedObject, bool arg__1);
void setTitle(QMenu* theWrappedObject, const QString& title);
QSize sizeHint(QMenu* theWrappedObject) const;
void timerEvent(QMenu* theWrappedObject, QTimerEvent* arg__1);
QString title(QMenu* theWrappedObject) const;
void wheelEvent(QMenu* theWrappedObject, QWheelEvent* arg__1);
QAction* addAction (QMenu* menu, const QString & text, PyObject* callable, const QKeySequence & shortcut = 0) {
QAction* a = menu->addAction(text);
a->setShortcut(shortcut);
PythonQt::self()->addSignalHandler(a, SIGNAL(triggered(bool)), callable);
return a;
}
QAction* addAction (QMenu* menu, const QIcon& icon, const QString& text, PyObject* callable, const QKeySequence& shortcut = 0)
{
QAction* a = menu->addAction(text);
a->setIcon(icon);
a->setShortcut(shortcut);
PythonQt::self()->addSignalHandler(a, SIGNAL(triggered(bool)), callable);
return a;
}
};
class PythonQtShell_QMenuBar : public QMenuBar
{
public:
PythonQtShell_QMenuBar(QWidget* parent = 0):QMenuBar(parent),_wrapper(NULL) {};
virtual void actionEvent(QActionEvent* arg__1);
virtual void changeEvent(QEvent* arg__1);
virtual void childEvent(QChildEvent* arg__1);
virtual void closeEvent(QCloseEvent* arg__1);
virtual void contextMenuEvent(QContextMenuEvent* arg__1);
virtual void customEvent(QEvent* arg__1);
virtual int devType() const;
virtual void dragEnterEvent(QDragEnterEvent* arg__1);
virtual void dragLeaveEvent(QDragLeaveEvent* arg__1);
virtual void dragMoveEvent(QDragMoveEvent* arg__1);
virtual void dropEvent(QDropEvent* arg__1);
virtual void enterEvent(QEvent* arg__1);
virtual bool event(QEvent* arg__1);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
virtual void focusInEvent(QFocusEvent* arg__1);
virtual bool focusNextPrevChild(bool next);
virtual void focusOutEvent(QFocusEvent* arg__1);
virtual int heightForWidth(int arg__1) const;
virtual void hideEvent(QHideEvent* arg__1);
virtual void inputMethodEvent(QInputMethodEvent* arg__1);
virtual QVariant inputMethodQuery(Qt::InputMethodQuery arg__1) const;
virtual void keyPressEvent(QKeyEvent* arg__1);
virtual void keyReleaseEvent(QKeyEvent* arg__1);
virtual void languageChange();
virtual void leaveEvent(QEvent* arg__1);
virtual int metric(QPaintDevice::PaintDeviceMetric arg__1) const;
virtual void mouseDoubleClickEvent(QMouseEvent* arg__1);
virtual void mouseMoveEvent(QMouseEvent* arg__1);
virtual void mousePressEvent(QMouseEvent* arg__1);
virtual void mouseReleaseEvent(QMouseEvent* arg__1);
virtual void moveEvent(QMoveEvent* arg__1);
virtual QPaintEngine* paintEngine() const;
virtual void paintEvent(QPaintEvent* arg__1);
virtual void resizeEvent(QResizeEvent* arg__1);
virtual void setVisible(bool visible);
virtual void showEvent(QShowEvent* arg__1);
virtual void tabletEvent(QTabletEvent* arg__1);
virtual void timerEvent(QTimerEvent* arg__1);
virtual void wheelEvent(QWheelEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QMenuBar : public QMenuBar
{ public:
inline void promoted_actionEvent(QActionEvent* arg__1) { QMenuBar::actionEvent(arg__1); }
inline void promoted_changeEvent(QEvent* arg__1) { QMenuBar::changeEvent(arg__1); }
inline bool promoted_event(QEvent* arg__1) { return QMenuBar::event(arg__1); }
inline bool promoted_eventFilter(QObject* arg__1, QEvent* arg__2) { return QMenuBar::eventFilter(arg__1, arg__2); }
inline void promoted_focusInEvent(QFocusEvent* arg__1) { QMenuBar::focusInEvent(arg__1); }
inline void promoted_focusOutEvent(QFocusEvent* arg__1) { QMenuBar::focusOutEvent(arg__1); }
inline int promoted_heightForWidth(int arg__1) const { return QMenuBar::heightForWidth(arg__1); }
inline void promoted_keyPressEvent(QKeyEvent* arg__1) { QMenuBar::keyPressEvent(arg__1); }
inline void promoted_leaveEvent(QEvent* arg__1) { QMenuBar::leaveEvent(arg__1); }
inline void promoted_mouseMoveEvent(QMouseEvent* arg__1) { QMenuBar::mouseMoveEvent(arg__1); }
inline void promoted_mousePressEvent(QMouseEvent* arg__1) { QMenuBar::mousePressEvent(arg__1); }
inline void promoted_mouseReleaseEvent(QMouseEvent* arg__1) { QMenuBar::mouseReleaseEvent(arg__1); }
inline void promoted_paintEvent(QPaintEvent* arg__1) { QMenuBar::paintEvent(arg__1); }
inline void promoted_resizeEvent(QResizeEvent* arg__1) { QMenuBar::resizeEvent(arg__1); }
inline void promoted_setVisible(bool visible) { QMenuBar::setVisible(visible); }
inline void promoted_timerEvent(QTimerEvent* arg__1) { QMenuBar::timerEvent(arg__1); }
};
class PythonQtWrapper_QMenuBar : public QObject
{ Q_OBJECT
public:
public slots:
QMenuBar* new_QMenuBar(QWidget* parent = 0);
void delete_QMenuBar(QMenuBar* obj) { delete obj; }
QAction* actionAt(QMenuBar* theWrappedObject, const QPoint& arg__1) const;
void actionEvent(QMenuBar* theWrappedObject, QActionEvent* arg__1);
QRect actionGeometry(QMenuBar* theWrappedObject, QAction* arg__1) const;
QAction* activeAction(QMenuBar* theWrappedObject) const;
void addAction(QMenuBar* theWrappedObject, QAction* action);
QAction* addAction(QMenuBar* theWrappedObject, const QString& text);
QAction* addAction(QMenuBar* theWrappedObject, const QString& text, const QObject* receiver, const char* member);
QAction* addMenu(QMenuBar* theWrappedObject, QMenu* menu);
QMenu* addMenu(QMenuBar* theWrappedObject, const QIcon& icon, const QString& title);
QMenu* addMenu(QMenuBar* theWrappedObject, const QString& title);
QAction* addSeparator(QMenuBar* theWrappedObject);
void changeEvent(QMenuBar* theWrappedObject, QEvent* arg__1);
void clear(QMenuBar* theWrappedObject);
QWidget* cornerWidget(QMenuBar* theWrappedObject, Qt::Corner corner = Qt::TopRightCorner) const;
bool event(QMenuBar* theWrappedObject, QEvent* arg__1);
bool eventFilter(QMenuBar* theWrappedObject, QObject* arg__1, QEvent* arg__2);
void focusInEvent(QMenuBar* theWrappedObject, QFocusEvent* arg__1);
void focusOutEvent(QMenuBar* theWrappedObject, QFocusEvent* arg__1);
int heightForWidth(QMenuBar* theWrappedObject, int arg__1) const;
QAction* insertMenu(QMenuBar* theWrappedObject, QAction* before, QMenu* menu);
QAction* insertSeparator(QMenuBar* theWrappedObject, QAction* before);
bool isDefaultUp(QMenuBar* theWrappedObject) const;
bool isNativeMenuBar(QMenuBar* theWrappedObject) const;
void keyPressEvent(QMenuBar* theWrappedObject, QKeyEvent* arg__1);
void leaveEvent(QMenuBar* theWrappedObject, QEvent* arg__1);
QSize minimumSizeHint(QMenuBar* theWrappedObject) const;
void mouseMoveEvent(QMenuBar* theWrappedObject, QMouseEvent* arg__1);
void mousePressEvent(QMenuBar* theWrappedObject, QMouseEvent* arg__1);
void mouseReleaseEvent(QMenuBar* theWrappedObject, QMouseEvent* arg__1);
void paintEvent(QMenuBar* theWrappedObject, QPaintEvent* arg__1);
void resizeEvent(QMenuBar* theWrappedObject, QResizeEvent* arg__1);
void setActiveAction(QMenuBar* theWrappedObject, QAction* action);
void setCornerWidget(QMenuBar* theWrappedObject, QWidget* w, Qt::Corner corner = Qt::TopRightCorner);
void setDefaultUp(QMenuBar* theWrappedObject, bool arg__1);
void setNativeMenuBar(QMenuBar* theWrappedObject, bool nativeMenuBar);
QSize sizeHint(QMenuBar* theWrappedObject) const;
void timerEvent(QMenuBar* theWrappedObject, QTimerEvent* arg__1);
QAction* addAction (QMenuBar* menu, const QString & text, PyObject* callable)
{
QAction* a = menu->addAction(text);
PythonQt::self()->addSignalHandler(a, SIGNAL(triggered(bool)), callable);
return a;
}
};
class PythonQtShell_QMessageBox : public QMessageBox
{
public:
PythonQtShell_QMessageBox(QMessageBox::Icon icon, const QString& title, const QString& text, QMessageBox::StandardButtons buttons = QMessageBox::NoButton, QWidget* parent = 0, Qt::WindowFlags flags = Qt::Dialog | Qt::MSWindowsFixedSizeDialogHint):QMessageBox(icon, title, text, buttons, parent, flags),_wrapper(NULL) {};
PythonQtShell_QMessageBox(QWidget* parent = 0):QMessageBox(parent),_wrapper(NULL) {};
virtual void accept();
virtual void actionEvent(QActionEvent* arg__1);
virtual void changeEvent(QEvent* event);
virtual void childEvent(QChildEvent* arg__1);
virtual void closeEvent(QCloseEvent* event);
virtual void contextMenuEvent(QContextMenuEvent* arg__1);
virtual void customEvent(QEvent* arg__1);
virtual int devType() const;
virtual void done(int arg__1);
virtual void dragEnterEvent(QDragEnterEvent* arg__1);
virtual void dragLeaveEvent(QDragLeaveEvent* arg__1);
virtual void dragMoveEvent(QDragMoveEvent* arg__1);
virtual void dropEvent(QDropEvent* arg__1);
virtual void enterEvent(QEvent* arg__1);
virtual bool event(QEvent* e);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
virtual void focusInEvent(QFocusEvent* arg__1);
virtual bool focusNextPrevChild(bool next);
virtual void focusOutEvent(QFocusEvent* arg__1);
virtual int heightForWidth(int arg__1) const;
virtual void hideEvent(QHideEvent* arg__1);
virtual void inputMethodEvent(QInputMethodEvent* arg__1);
virtual QVariant inputMethodQuery(Qt::InputMethodQuery arg__1) const;
virtual void keyPressEvent(QKeyEvent* event);
virtual void keyReleaseEvent(QKeyEvent* arg__1);
virtual void languageChange();
virtual void leaveEvent(QEvent* arg__1);
virtual int metric(QPaintDevice::PaintDeviceMetric arg__1) const;
virtual void mouseDoubleClickEvent(QMouseEvent* arg__1);
virtual void mouseMoveEvent(QMouseEvent* arg__1);
virtual void mousePressEvent(QMouseEvent* arg__1);
virtual void mouseReleaseEvent(QMouseEvent* arg__1);
virtual void moveEvent(QMoveEvent* arg__1);
virtual QPaintEngine* paintEngine() const;
virtual void paintEvent(QPaintEvent* arg__1);
virtual void reject();
virtual void resizeEvent(QResizeEvent* event);
virtual void showEvent(QShowEvent* event);
virtual void tabletEvent(QTabletEvent* arg__1);
virtual void timerEvent(QTimerEvent* arg__1);
virtual void wheelEvent(QWheelEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QMessageBox : public QMessageBox
{ public:
inline void promoted_changeEvent(QEvent* event) { QMessageBox::changeEvent(event); }
inline void promoted_closeEvent(QCloseEvent* event) { QMessageBox::closeEvent(event); }
inline bool promoted_event(QEvent* e) { return QMessageBox::event(e); }
inline void promoted_keyPressEvent(QKeyEvent* event) { QMessageBox::keyPressEvent(event); }
inline void promoted_resizeEvent(QResizeEvent* event) { QMessageBox::resizeEvent(event); }
inline void promoted_showEvent(QShowEvent* event) { QMessageBox::showEvent(event); }
};
class PythonQtWrapper_QMessageBox : public QObject
{ Q_OBJECT
public:
Q_ENUMS(ButtonRole StandardButton )
Q_FLAGS(StandardButtons )
enum ButtonRole{
InvalidRole = QMessageBox::InvalidRole, AcceptRole = QMessageBox::AcceptRole, RejectRole = QMessageBox::RejectRole, DestructiveRole = QMessageBox::DestructiveRole, ActionRole = QMessageBox::ActionRole, HelpRole = QMessageBox::HelpRole, YesRole = QMessageBox::YesRole, NoRole = QMessageBox::NoRole, ResetRole = QMessageBox::ResetRole, ApplyRole = QMessageBox::ApplyRole, NRoles = QMessageBox::NRoles};
enum StandardButton{
NoButton = QMessageBox::NoButton, Ok = QMessageBox::Ok, Save = QMessageBox::Save, SaveAll = QMessageBox::SaveAll, Open = QMessageBox::Open, Yes = QMessageBox::Yes, YesToAll = QMessageBox::YesToAll, No = QMessageBox::No, NoToAll = QMessageBox::NoToAll, Abort = QMessageBox::Abort, Retry = QMessageBox::Retry, Ignore = QMessageBox::Ignore, Close = QMessageBox::Close, Cancel = QMessageBox::Cancel, Discard = QMessageBox::Discard, Help = QMessageBox::Help, Apply = QMessageBox::Apply, Reset = QMessageBox::Reset, RestoreDefaults = QMessageBox::RestoreDefaults, FirstButton = QMessageBox::FirstButton, LastButton = QMessageBox::LastButton, YesAll = QMessageBox::YesAll, NoAll = QMessageBox::NoAll, Default = QMessageBox::Default, Escape = QMessageBox::Escape, FlagMask = QMessageBox::FlagMask, ButtonMask = QMessageBox::ButtonMask};
Q_DECLARE_FLAGS(StandardButtons, StandardButton)
public slots:
QMessageBox* new_QMessageBox(QMessageBox::Icon icon, const QString& title, const QString& text, QMessageBox::StandardButtons buttons = QMessageBox::NoButton, QWidget* parent = 0, Qt::WindowFlags flags = Qt::Dialog | Qt::MSWindowsFixedSizeDialogHint);
QMessageBox* new_QMessageBox(QWidget* parent = 0);
void delete_QMessageBox(QMessageBox* obj) { delete obj; }
void static_QMessageBox_about(QWidget* parent, const QString& title, const QString& text);
void static_QMessageBox_aboutQt(QWidget* parent, const QString& title = QString());
void addButton(QMessageBox* theWrappedObject, QAbstractButton* button, QMessageBox::ButtonRole role);
QPushButton* addButton(QMessageBox* theWrappedObject, QMessageBox::StandardButton button);
QPushButton* addButton(QMessageBox* theWrappedObject, const QString& text, QMessageBox::ButtonRole role);
QAbstractButton* button(QMessageBox* theWrappedObject, QMessageBox::StandardButton which) const;
QMessageBox::ButtonRole buttonRole(QMessageBox* theWrappedObject, QAbstractButton* button) const;
QList<QAbstractButton* > buttons(QMessageBox* theWrappedObject) const;
void changeEvent(QMessageBox* theWrappedObject, QEvent* event);
QAbstractButton* clickedButton(QMessageBox* theWrappedObject) const;
void closeEvent(QMessageBox* theWrappedObject, QCloseEvent* event);
QMessageBox::StandardButton static_QMessageBox_critical(QWidget* parent, const QString& title, const QString& text, QMessageBox::StandardButtons buttons = QMessageBox::Ok, QMessageBox::StandardButton defaultButton = QMessageBox::NoButton);
int static_QMessageBox_critical(QWidget* parent, const QString& title, const QString& text, QMessageBox::StandardButton button0, QMessageBox::StandardButton button1);
QPushButton* defaultButton(QMessageBox* theWrappedObject) const;
QString detailedText(QMessageBox* theWrappedObject) const;
QAbstractButton* escapeButton(QMessageBox* theWrappedObject) const;
bool event(QMessageBox* theWrappedObject, QEvent* e);
QMessageBox::Icon icon(QMessageBox* theWrappedObject) const;
QPixmap iconPixmap(QMessageBox* theWrappedObject) const;
QMessageBox::StandardButton static_QMessageBox_information(QWidget* parent, const QString& title, const QString& text, QMessageBox::StandardButtons buttons = QMessageBox::Ok, QMessageBox::StandardButton defaultButton = QMessageBox::NoButton);
QMessageBox::StandardButton static_QMessageBox_information(QWidget* parent, const QString& title, const QString& text, QMessageBox::StandardButton button0, QMessageBox::StandardButton button1 = QMessageBox::NoButton);
QString informativeText(QMessageBox* theWrappedObject) const;
void keyPressEvent(QMessageBox* theWrappedObject, QKeyEvent* event);
void open(QMessageBox* theWrappedObject);
void open(QMessageBox* theWrappedObject, QObject* receiver, const char* member);
QMessageBox::StandardButton static_QMessageBox_question(QWidget* parent, const QString& title, const QString& text, QMessageBox::StandardButtons buttons = QMessageBox::Ok, QMessageBox::StandardButton defaultButton = QMessageBox::NoButton);
int static_QMessageBox_question(QWidget* parent, const QString& title, const QString& text, QMessageBox::StandardButton button0, QMessageBox::StandardButton button1);
void removeButton(QMessageBox* theWrappedObject, QAbstractButton* button);
void resizeEvent(QMessageBox* theWrappedObject, QResizeEvent* event);
void setDefaultButton(QMessageBox* theWrappedObject, QMessageBox::StandardButton button);
void setDefaultButton(QMessageBox* theWrappedObject, QPushButton* button);
void setDetailedText(QMessageBox* theWrappedObject, const QString& text);
void setEscapeButton(QMessageBox* theWrappedObject, QAbstractButton* button);
void setEscapeButton(QMessageBox* theWrappedObject, QMessageBox::StandardButton button);
void setIcon(QMessageBox* theWrappedObject, QMessageBox::Icon arg__1);
void setIconPixmap(QMessageBox* theWrappedObject, const QPixmap& pixmap);
void setInformativeText(QMessageBox* theWrappedObject, const QString& text);
void setStandardButtons(QMessageBox* theWrappedObject, QMessageBox::StandardButtons buttons);
void setText(QMessageBox* theWrappedObject, const QString& text);
void setTextFormat(QMessageBox* theWrappedObject, Qt::TextFormat format);
void showEvent(QMessageBox* theWrappedObject, QShowEvent* event);
QSize sizeHint(QMessageBox* theWrappedObject) const;
QMessageBox::StandardButton standardButton(QMessageBox* theWrappedObject, QAbstractButton* button) const;
QMessageBox::StandardButtons standardButtons(QMessageBox* theWrappedObject) const;
QString text(QMessageBox* theWrappedObject) const;
Qt::TextFormat textFormat(QMessageBox* theWrappedObject) const;
QMessageBox::StandardButton static_QMessageBox_warning(QWidget* parent, const QString& title, const QString& text, QMessageBox::StandardButtons buttons = QMessageBox::Ok, QMessageBox::StandardButton defaultButton = QMessageBox::NoButton);
int static_QMessageBox_warning(QWidget* parent, const QString& title, const QString& text, QMessageBox::StandardButton button0, QMessageBox::StandardButton button1);
};
class PythonQtShell_QMotifStyle : public QMotifStyle
{
public:
PythonQtShell_QMotifStyle(bool useHighlightCols = false):QMotifStyle(useHighlightCols),_wrapper(NULL) {};
virtual void childEvent(QChildEvent* arg__1);
virtual void customEvent(QEvent* arg__1);
virtual void drawComplexControl(QStyle::ComplexControl cc, const QStyleOptionComplex* opt, QPainter* p, const QWidget* w = 0) const;
virtual void drawControl(QStyle::ControlElement element, const QStyleOption* opt, QPainter* p, const QWidget* w = 0) const;
virtual void drawItemPixmap(QPainter* painter, const QRect& rect, int alignment, const QPixmap& pixmap) const;
virtual void drawItemText(QPainter* painter, const QRect& rect, int flags, const QPalette& pal, bool enabled, const QString& text, QPalette::ColorRole textRole) const;
virtual void drawPrimitive(QStyle::PrimitiveElement pe, const QStyleOption* opt, QPainter* p, const QWidget* w = 0) const;
virtual bool event(QEvent* arg__1);
virtual bool eventFilter(QObject* o, QEvent* e);
virtual QPixmap generatedIconPixmap(QIcon::Mode iconMode, const QPixmap& pixmap, const QStyleOption* opt) const;
virtual QStyle::SubControl hitTestComplexControl(QStyle::ComplexControl cc, const QStyleOptionComplex* opt, const QPoint& pt, const QWidget* w) const;
virtual QRect itemPixmapRect(const QRect& r, int flags, const QPixmap& pixmap) const;
virtual int pixelMetric(QStyle::PixelMetric metric, const QStyleOption* option = 0, const QWidget* widget = 0) const;
virtual void polish(QApplication* arg__1);
virtual void polish(QPalette& arg__1);
virtual void polish(QWidget* arg__1);
virtual QSize sizeFromContents(QStyle::ContentsType ct, const QStyleOption* opt, const QSize& contentsSize, const QWidget* widget = 0) const;
virtual QPalette standardPalette() const;
virtual QPixmap standardPixmap(QStyle::StandardPixmap standardPixmap, const QStyleOption* opt, const QWidget* widget) const;
virtual int styleHint(QStyle::StyleHint hint, const QStyleOption* opt = 0, const QWidget* widget = 0, QStyleHintReturn* returnData = 0) const;
virtual QRect subControlRect(QStyle::ComplexControl cc, const QStyleOptionComplex* opt, QStyle::SubControl sc, const QWidget* widget = 0) const;
virtual QRect subElementRect(QStyle::SubElement r, const QStyleOption* opt, const QWidget* widget = 0) const;
virtual void timerEvent(QTimerEvent* event);
virtual void unpolish(QApplication* arg__1);
virtual void unpolish(QWidget* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QMotifStyle : public QMotifStyle
{ public:
inline void promoted_drawComplexControl(QStyle::ComplexControl cc, const QStyleOptionComplex* opt, QPainter* p, const QWidget* w = 0) const { QMotifStyle::drawComplexControl(cc, opt, p, w); }
inline void promoted_drawControl(QStyle::ControlElement element, const QStyleOption* opt, QPainter* p, const QWidget* w = 0) const { QMotifStyle::drawControl(element, opt, p, w); }
inline void promoted_drawPrimitive(QStyle::PrimitiveElement pe, const QStyleOption* opt, QPainter* p, const QWidget* w = 0) const { QMotifStyle::drawPrimitive(pe, opt, p, w); }
inline bool promoted_event(QEvent* arg__1) { return QMotifStyle::event(arg__1); }
inline bool promoted_eventFilter(QObject* o, QEvent* e) { return QMotifStyle::eventFilter(o, e); }
inline int promoted_pixelMetric(QStyle::PixelMetric metric, const QStyleOption* option = 0, const QWidget* widget = 0) const { return QMotifStyle::pixelMetric(metric, option, widget); }
inline void promoted_polish(QApplication* arg__1) { QMotifStyle::polish(arg__1); }
inline void promoted_polish(QPalette& arg__1) { QMotifStyle::polish(arg__1); }
inline void promoted_polish(QWidget* arg__1) { QMotifStyle::polish(arg__1); }
inline QSize promoted_sizeFromContents(QStyle::ContentsType ct, const QStyleOption* opt, const QSize& contentsSize, const QWidget* widget = 0) const { return QMotifStyle::sizeFromContents(ct, opt, contentsSize, widget); }
inline QPalette promoted_standardPalette() const { return QMotifStyle::standardPalette(); }
inline int promoted_styleHint(QStyle::StyleHint hint, const QStyleOption* opt = 0, const QWidget* widget = 0, QStyleHintReturn* returnData = 0) const { return QMotifStyle::styleHint(hint, opt, widget, returnData); }
inline QRect promoted_subControlRect(QStyle::ComplexControl cc, const QStyleOptionComplex* opt, QStyle::SubControl sc, const QWidget* widget = 0) const { return QMotifStyle::subControlRect(cc, opt, sc, widget); }
inline QRect promoted_subElementRect(QStyle::SubElement r, const QStyleOption* opt, const QWidget* widget = 0) const { return QMotifStyle::subElementRect(r, opt, widget); }
inline void promoted_timerEvent(QTimerEvent* event) { QMotifStyle::timerEvent(event); }
inline void promoted_unpolish(QApplication* arg__1) { QMotifStyle::unpolish(arg__1); }
inline void promoted_unpolish(QWidget* arg__1) { QMotifStyle::unpolish(arg__1); }
};
class PythonQtWrapper_QMotifStyle : public QObject
{ Q_OBJECT
public:
public slots:
QMotifStyle* new_QMotifStyle(bool useHighlightCols = false);
void delete_QMotifStyle(QMotifStyle* obj) { delete obj; }
void drawComplexControl(QMotifStyle* theWrappedObject, QStyle::ComplexControl cc, const QStyleOptionComplex* opt, QPainter* p, const QWidget* w = 0) const;
void drawControl(QMotifStyle* theWrappedObject, QStyle::ControlElement element, const QStyleOption* opt, QPainter* p, const QWidget* w = 0) const;
void drawPrimitive(QMotifStyle* theWrappedObject, QStyle::PrimitiveElement pe, const QStyleOption* opt, QPainter* p, const QWidget* w = 0) const;
bool event(QMotifStyle* theWrappedObject, QEvent* arg__1);
bool eventFilter(QMotifStyle* theWrappedObject, QObject* o, QEvent* e);
int pixelMetric(QMotifStyle* theWrappedObject, QStyle::PixelMetric metric, const QStyleOption* option = 0, const QWidget* widget = 0) const;
void polish(QMotifStyle* theWrappedObject, QApplication* arg__1);
void polish(QMotifStyle* theWrappedObject, QPalette& arg__1);
void polish(QMotifStyle* theWrappedObject, QWidget* arg__1);
void setUseHighlightColors(QMotifStyle* theWrappedObject, bool arg__1);
QSize sizeFromContents(QMotifStyle* theWrappedObject, QStyle::ContentsType ct, const QStyleOption* opt, const QSize& contentsSize, const QWidget* widget = 0) const;
QPalette standardPalette(QMotifStyle* theWrappedObject) const;
int styleHint(QMotifStyle* theWrappedObject, QStyle::StyleHint hint, const QStyleOption* opt = 0, const QWidget* widget = 0, QStyleHintReturn* returnData = 0) const;
QRect subControlRect(QMotifStyle* theWrappedObject, QStyle::ComplexControl cc, const QStyleOptionComplex* opt, QStyle::SubControl sc, const QWidget* widget = 0) const;
QRect subElementRect(QMotifStyle* theWrappedObject, QStyle::SubElement r, const QStyleOption* opt, const QWidget* widget = 0) const;
void timerEvent(QMotifStyle* theWrappedObject, QTimerEvent* event);
void unpolish(QMotifStyle* theWrappedObject, QApplication* arg__1);
void unpolish(QMotifStyle* theWrappedObject, QWidget* arg__1);
bool useHighlightColors(QMotifStyle* theWrappedObject) const;
};
class PythonQtShell_QMouseEvent : public QMouseEvent
{
public:
PythonQtShell_QMouseEvent(QEvent::Type type, const QPoint& pos, Qt::MouseButton button, Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers):QMouseEvent(type, pos, button, buttons, modifiers),_wrapper(NULL) {};
PythonQtShell_QMouseEvent(QEvent::Type type, const QPoint& pos, const QPoint& globalPos, Qt::MouseButton button, Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers):QMouseEvent(type, pos, globalPos, button, buttons, modifiers),_wrapper(NULL) {};
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QMouseEvent : public QObject
{ Q_OBJECT
public:
public slots:
QMouseEvent* new_QMouseEvent(QEvent::Type type, const QPoint& pos, Qt::MouseButton button, Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers);
QMouseEvent* new_QMouseEvent(QEvent::Type type, const QPoint& pos, const QPoint& globalPos, Qt::MouseButton button, Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers);
void delete_QMouseEvent(QMouseEvent* obj) { delete obj; }
Qt::MouseButton button(QMouseEvent* theWrappedObject) const;
Qt::MouseButtons buttons(QMouseEvent* theWrappedObject) const;
QMouseEvent* static_QMouseEvent_createExtendedMouseEvent(QEvent::Type type, const QPointF& pos, const QPoint& globalPos, Qt::MouseButton button, Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers);
const QPoint* globalPos(QMouseEvent* theWrappedObject) const;
int globalX(QMouseEvent* theWrappedObject) const;
int globalY(QMouseEvent* theWrappedObject) const;
bool hasExtendedInfo(QMouseEvent* theWrappedObject) const;
const QPoint* pos(QMouseEvent* theWrappedObject) const;
QPointF posF(QMouseEvent* theWrappedObject) const;
int x(QMouseEvent* theWrappedObject) const;
int y(QMouseEvent* theWrappedObject) const;
};
class PythonQtShell_QMouseEventTransition : public QMouseEventTransition
{
public:
PythonQtShell_QMouseEventTransition(QObject* object, QEvent::Type type, Qt::MouseButton button, QState* sourceState = 0):QMouseEventTransition(object, type, button, sourceState),_wrapper(NULL) {};
PythonQtShell_QMouseEventTransition(QState* sourceState = 0):QMouseEventTransition(sourceState),_wrapper(NULL) {};
virtual void childEvent(QChildEvent* arg__1);
virtual void customEvent(QEvent* arg__1);
virtual bool event(QEvent* e);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
virtual bool eventTest(QEvent* event);
virtual void onTransition(QEvent* event);
virtual void timerEvent(QTimerEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QMouseEventTransition : public QMouseEventTransition
{ public:
inline bool promoted_eventTest(QEvent* event) { return QMouseEventTransition::eventTest(event); }
inline void promoted_onTransition(QEvent* event) { QMouseEventTransition::onTransition(event); }
};
class PythonQtWrapper_QMouseEventTransition : public QObject
{ Q_OBJECT
public:
public slots:
QMouseEventTransition* new_QMouseEventTransition(QObject* object, QEvent::Type type, Qt::MouseButton button, QState* sourceState = 0);
QMouseEventTransition* new_QMouseEventTransition(QState* sourceState = 0);
void delete_QMouseEventTransition(QMouseEventTransition* obj) { delete obj; }
Qt::MouseButton button(QMouseEventTransition* theWrappedObject) const;
bool eventTest(QMouseEventTransition* theWrappedObject, QEvent* event);
QPainterPath hitTestPath(QMouseEventTransition* theWrappedObject) const;
Qt::KeyboardModifiers modifierMask(QMouseEventTransition* theWrappedObject) const;
void onTransition(QMouseEventTransition* theWrappedObject, QEvent* event);
void setButton(QMouseEventTransition* theWrappedObject, Qt::MouseButton button);
void setHitTestPath(QMouseEventTransition* theWrappedObject, const QPainterPath& path);
void setModifierMask(QMouseEventTransition* theWrappedObject, Qt::KeyboardModifiers modifiers);
};
class PythonQtShell_QMoveEvent : public QMoveEvent
{
public:
PythonQtShell_QMoveEvent(const QPoint& pos, const QPoint& oldPos):QMoveEvent(pos, oldPos),_wrapper(NULL) {};
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QMoveEvent : public QObject
{ Q_OBJECT
public:
public slots:
QMoveEvent* new_QMoveEvent(const QPoint& pos, const QPoint& oldPos);
void delete_QMoveEvent(QMoveEvent* obj) { delete obj; }
const QPoint* oldPos(QMoveEvent* theWrappedObject) const;
const QPoint* pos(QMoveEvent* theWrappedObject) const;
};
class PythonQtShell_QMovie : public QMovie
{
public:
PythonQtShell_QMovie(QIODevice* device, const QByteArray& format = QByteArray(), QObject* parent = 0):QMovie(device, format, parent),_wrapper(NULL) {};
PythonQtShell_QMovie(QObject* parent = 0):QMovie(parent),_wrapper(NULL) {};
PythonQtShell_QMovie(const QString& fileName, const QByteArray& format = QByteArray(), QObject* parent = 0):QMovie(fileName, format, parent),_wrapper(NULL) {};
virtual void childEvent(QChildEvent* arg__1);
virtual void customEvent(QEvent* arg__1);
virtual bool event(QEvent* arg__1);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
virtual void timerEvent(QTimerEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QMovie : public QObject
{ Q_OBJECT
public:
public slots:
QMovie* new_QMovie(QIODevice* device, const QByteArray& format = QByteArray(), QObject* parent = 0);
QMovie* new_QMovie(QObject* parent = 0);
QMovie* new_QMovie(const QString& fileName, const QByteArray& format = QByteArray(), QObject* parent = 0);
void delete_QMovie(QMovie* obj) { delete obj; }
QColor backgroundColor(QMovie* theWrappedObject) const;
QMovie::CacheMode cacheMode(QMovie* theWrappedObject) const;
int currentFrameNumber(QMovie* theWrappedObject) const;
QImage currentImage(QMovie* theWrappedObject) const;
QPixmap currentPixmap(QMovie* theWrappedObject) const;
QIODevice* device(QMovie* theWrappedObject) const;
QString fileName(QMovie* theWrappedObject) const;
QByteArray format(QMovie* theWrappedObject) const;
int frameCount(QMovie* theWrappedObject) const;
QRect frameRect(QMovie* theWrappedObject) const;
bool isValid(QMovie* theWrappedObject) const;
bool jumpToFrame(QMovie* theWrappedObject, int frameNumber);
int loopCount(QMovie* theWrappedObject) const;
int nextFrameDelay(QMovie* theWrappedObject) const;
QSize scaledSize(QMovie* theWrappedObject);
void setBackgroundColor(QMovie* theWrappedObject, const QColor& color);
void setCacheMode(QMovie* theWrappedObject, QMovie::CacheMode mode);
void setDevice(QMovie* theWrappedObject, QIODevice* device);
void setFileName(QMovie* theWrappedObject, const QString& fileName);
void setFormat(QMovie* theWrappedObject, const QByteArray& format);
void setScaledSize(QMovie* theWrappedObject, const QSize& size);
int speed(QMovie* theWrappedObject) const;
QMovie::MovieState state(QMovie* theWrappedObject) const;
QList<QByteArray > static_QMovie_supportedFormats();
};
class PythonQtShell_QPageSetupDialog : public QPageSetupDialog
{
public:
PythonQtShell_QPageSetupDialog(QPrinter* printer, QWidget* parent = 0):QPageSetupDialog(printer, parent),_wrapper(NULL) {};
PythonQtShell_QPageSetupDialog(QWidget* parent = 0):QPageSetupDialog(parent),_wrapper(NULL) {};
virtual void accept();
virtual void actionEvent(QActionEvent* arg__1);
virtual void changeEvent(QEvent* arg__1);
virtual void childEvent(QChildEvent* arg__1);
virtual void closeEvent(QCloseEvent* arg__1);
virtual void contextMenuEvent(QContextMenuEvent* arg__1);
virtual void customEvent(QEvent* arg__1);
virtual int devType() const;
virtual void done(int result);
virtual void dragEnterEvent(QDragEnterEvent* arg__1);
virtual void dragLeaveEvent(QDragLeaveEvent* arg__1);
virtual void dragMoveEvent(QDragMoveEvent* arg__1);
virtual void dropEvent(QDropEvent* arg__1);
virtual void enterEvent(QEvent* arg__1);
virtual bool event(QEvent* arg__1);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
virtual int exec();
virtual void focusInEvent(QFocusEvent* arg__1);
virtual bool focusNextPrevChild(bool next);
virtual void focusOutEvent(QFocusEvent* arg__1);
virtual int heightForWidth(int arg__1) const;
virtual void hideEvent(QHideEvent* arg__1);
virtual void inputMethodEvent(QInputMethodEvent* arg__1);
virtual QVariant inputMethodQuery(Qt::InputMethodQuery arg__1) const;
virtual void keyPressEvent(QKeyEvent* arg__1);
virtual void keyReleaseEvent(QKeyEvent* arg__1);
virtual void languageChange();
virtual void leaveEvent(QEvent* arg__1);
virtual int metric(QPaintDevice::PaintDeviceMetric arg__1) const;
virtual void mouseDoubleClickEvent(QMouseEvent* arg__1);
virtual void mouseMoveEvent(QMouseEvent* arg__1);
virtual void mousePressEvent(QMouseEvent* arg__1);
virtual void mouseReleaseEvent(QMouseEvent* arg__1);
virtual void moveEvent(QMoveEvent* arg__1);
virtual QPaintEngine* paintEngine() const;
virtual void paintEvent(QPaintEvent* arg__1);
virtual void reject();
virtual void resizeEvent(QResizeEvent* arg__1);
virtual void showEvent(QShowEvent* arg__1);
virtual void tabletEvent(QTabletEvent* arg__1);
virtual void timerEvent(QTimerEvent* arg__1);
virtual void wheelEvent(QWheelEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QPageSetupDialog : public QPageSetupDialog
{ public:
inline int promoted_exec() { return QPageSetupDialog::exec(); }
};
class PythonQtWrapper_QPageSetupDialog : public QObject
{ Q_OBJECT
public:
public slots:
QPageSetupDialog* new_QPageSetupDialog(QPrinter* printer, QWidget* parent = 0);
QPageSetupDialog* new_QPageSetupDialog(QWidget* parent = 0);
void delete_QPageSetupDialog(QPageSetupDialog* obj) { delete obj; }
void addEnabledOption(QPageSetupDialog* theWrappedObject, QPageSetupDialog::PageSetupDialogOption option);
QPageSetupDialog::PageSetupDialogOptions enabledOptions(QPageSetupDialog* theWrappedObject) const;
int exec(QPageSetupDialog* theWrappedObject);
bool isOptionEnabled(QPageSetupDialog* theWrappedObject, QPageSetupDialog::PageSetupDialogOption option) const;
void open(QPageSetupDialog* theWrappedObject);
void open(QPageSetupDialog* theWrappedObject, QObject* receiver, const char* member);
QPageSetupDialog::PageSetupDialogOptions options(QPageSetupDialog* theWrappedObject) const;
void setEnabledOptions(QPageSetupDialog* theWrappedObject, QPageSetupDialog::PageSetupDialogOptions options);
void setOption(QPageSetupDialog* theWrappedObject, QPageSetupDialog::PageSetupDialogOption option, bool on = true);
void setOptions(QPageSetupDialog* theWrappedObject, QPageSetupDialog::PageSetupDialogOptions options);
bool testOption(QPageSetupDialog* theWrappedObject, QPageSetupDialog::PageSetupDialogOption option) const;
};
class PythonQtShell_QPaintDevice : public QPaintDevice
{
public:
PythonQtShell_QPaintDevice():QPaintDevice(),_wrapper(NULL) {};
virtual int devType() const;
virtual int metric(QPaintDevice::PaintDeviceMetric metric) const;
virtual QPaintEngine* paintEngine() const;
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QPaintDevice : public QPaintDevice
{ public:
inline int promoted_devType() const { return QPaintDevice::devType(); }
inline int promoted_metric(QPaintDevice::PaintDeviceMetric metric) const { return QPaintDevice::metric(metric); }
};
class PythonQtWrapper_QPaintDevice : public QObject
{ Q_OBJECT
public:
Q_ENUMS(PaintDeviceMetric )
enum PaintDeviceMetric{
PdmWidth = QPaintDevice::PdmWidth, PdmHeight = QPaintDevice::PdmHeight, PdmWidthMM = QPaintDevice::PdmWidthMM, PdmHeightMM = QPaintDevice::PdmHeightMM, PdmNumColors = QPaintDevice::PdmNumColors, PdmDepth = QPaintDevice::PdmDepth, PdmDpiX = QPaintDevice::PdmDpiX, PdmDpiY = QPaintDevice::PdmDpiY, PdmPhysicalDpiX = QPaintDevice::PdmPhysicalDpiX, PdmPhysicalDpiY = QPaintDevice::PdmPhysicalDpiY};
public slots:
QPaintDevice* new_QPaintDevice();
void delete_QPaintDevice(QPaintDevice* obj) { delete obj; }
int colorCount(QPaintDevice* theWrappedObject) const;
int depth(QPaintDevice* theWrappedObject) const;
int devType(QPaintDevice* theWrappedObject) const;
int height(QPaintDevice* theWrappedObject) const;
int heightMM(QPaintDevice* theWrappedObject) const;
int logicalDpiX(QPaintDevice* theWrappedObject) const;
int logicalDpiY(QPaintDevice* theWrappedObject) const;
int metric(QPaintDevice* theWrappedObject, QPaintDevice::PaintDeviceMetric metric) const;
int numColors(QPaintDevice* theWrappedObject) const;
bool paintingActive(QPaintDevice* theWrappedObject) const;
int physicalDpiX(QPaintDevice* theWrappedObject) const;
int physicalDpiY(QPaintDevice* theWrappedObject) const;
int width(QPaintDevice* theWrappedObject) const;
int widthMM(QPaintDevice* theWrappedObject) const;
};
class PythonQtShell_QPaintEngine : public QPaintEngine
{
public:
PythonQtShell_QPaintEngine(QPaintEngine::PaintEngineFeatures features = 0):QPaintEngine(features),_wrapper(NULL) {};
virtual bool begin(QPaintDevice* pdev);
virtual QPoint coordinateOffset() const;
virtual void drawEllipse(const QRect& r);
virtual void drawEllipse(const QRectF& r);
virtual void drawImage(const QRectF& r, const QImage& pm, const QRectF& sr, Qt::ImageConversionFlags flags = Qt::AutoColor);
virtual void drawLines(const QLine* lines, int lineCount);
virtual void drawLines(const QLineF* lines, int lineCount);
virtual void drawPath(const QPainterPath& path);
virtual void drawPixmap(const QRectF& r, const QPixmap& pm, const QRectF& sr);
virtual void drawPoints(const QPoint* points, int pointCount);
virtual void drawPoints(const QPointF* points, int pointCount);
virtual void drawPolygon(const QPoint* points, int pointCount, QPaintEngine::PolygonDrawMode mode);
virtual void drawPolygon(const QPointF* points, int pointCount, QPaintEngine::PolygonDrawMode mode);
virtual void drawRects(const QRect* rects, int rectCount);
virtual void drawRects(const QRectF* rects, int rectCount);
virtual void drawTextItem(const QPointF& p, const QTextItem& textItem);
virtual void drawTiledPixmap(const QRectF& r, const QPixmap& pixmap, const QPointF& s);
virtual bool end();
virtual QPaintEngine::Type type() const;
virtual void updateState(const QPaintEngineState& state);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QPaintEngine : public QPaintEngine
{ public:
inline QPoint promoted_coordinateOffset() const { return QPaintEngine::coordinateOffset(); }
inline void promoted_drawEllipse(const QRect& r) { QPaintEngine::drawEllipse(r); }
inline void promoted_drawEllipse(const QRectF& r) { QPaintEngine::drawEllipse(r); }
inline void promoted_drawImage(const QRectF& r, const QImage& pm, const QRectF& sr, Qt::ImageConversionFlags flags = Qt::AutoColor) { QPaintEngine::drawImage(r, pm, sr, flags); }
inline void promoted_drawLines(const QLine* lines, int lineCount) { QPaintEngine::drawLines(lines, lineCount); }
inline void promoted_drawLines(const QLineF* lines, int lineCount) { QPaintEngine::drawLines(lines, lineCount); }
inline void promoted_drawPath(const QPainterPath& path) { QPaintEngine::drawPath(path); }
inline void promoted_drawPoints(const QPoint* points, int pointCount) { QPaintEngine::drawPoints(points, pointCount); }
inline void promoted_drawPoints(const QPointF* points, int pointCount) { QPaintEngine::drawPoints(points, pointCount); }
inline void promoted_drawPolygon(const QPoint* points, int pointCount, QPaintEngine::PolygonDrawMode mode) { QPaintEngine::drawPolygon(points, pointCount, mode); }
inline void promoted_drawPolygon(const QPointF* points, int pointCount, QPaintEngine::PolygonDrawMode mode) { QPaintEngine::drawPolygon(points, pointCount, mode); }
inline void promoted_drawRects(const QRect* rects, int rectCount) { QPaintEngine::drawRects(rects, rectCount); }
inline void promoted_drawRects(const QRectF* rects, int rectCount) { QPaintEngine::drawRects(rects, rectCount); }
inline void promoted_drawTextItem(const QPointF& p, const QTextItem& textItem) { QPaintEngine::drawTextItem(p, textItem); }
inline void promoted_drawTiledPixmap(const QRectF& r, const QPixmap& pixmap, const QPointF& s) { QPaintEngine::drawTiledPixmap(r, pixmap, s); }
};
class PythonQtWrapper_QPaintEngine : public QObject
{ Q_OBJECT
public:
Q_ENUMS(PolygonDrawMode Type PaintEngineFeature DirtyFlag )
Q_FLAGS(PaintEngineFeatures DirtyFlags )
enum PolygonDrawMode{
OddEvenMode = QPaintEngine::OddEvenMode, WindingMode = QPaintEngine::WindingMode, ConvexMode = QPaintEngine::ConvexMode, PolylineMode = QPaintEngine::PolylineMode};
enum Type{
X11 = QPaintEngine::X11, Windows = QPaintEngine::Windows, QuickDraw = QPaintEngine::QuickDraw, CoreGraphics = QPaintEngine::CoreGraphics, MacPrinter = QPaintEngine::MacPrinter, QWindowSystem = QPaintEngine::QWindowSystem, PostScript = QPaintEngine::PostScript, OpenGL = QPaintEngine::OpenGL, Picture = QPaintEngine::Picture, SVG = QPaintEngine::SVG, Raster = QPaintEngine::Raster, Direct3D = QPaintEngine::Direct3D, Pdf = QPaintEngine::Pdf, OpenVG = QPaintEngine::OpenVG, OpenGL2 = QPaintEngine::OpenGL2, PaintBuffer = QPaintEngine::PaintBuffer, User = QPaintEngine::User, MaxUser = QPaintEngine::MaxUser};
enum PaintEngineFeature{
PrimitiveTransform = QPaintEngine::PrimitiveTransform, PatternTransform = QPaintEngine::PatternTransform, PixmapTransform = QPaintEngine::PixmapTransform, PatternBrush = QPaintEngine::PatternBrush, LinearGradientFill = QPaintEngine::LinearGradientFill, RadialGradientFill = QPaintEngine::RadialGradientFill, ConicalGradientFill = QPaintEngine::ConicalGradientFill, AlphaBlend = QPaintEngine::AlphaBlend, PorterDuff = QPaintEngine::PorterDuff, PainterPaths = QPaintEngine::PainterPaths, Antialiasing = QPaintEngine::Antialiasing, BrushStroke = QPaintEngine::BrushStroke, ConstantOpacity = QPaintEngine::ConstantOpacity, MaskedBrush = QPaintEngine::MaskedBrush, PerspectiveTransform = QPaintEngine::PerspectiveTransform, BlendModes = QPaintEngine::BlendModes, ObjectBoundingModeGradients = QPaintEngine::ObjectBoundingModeGradients, RasterOpModes = QPaintEngine::RasterOpModes, PaintOutsidePaintEvent = QPaintEngine::PaintOutsidePaintEvent, AllFeatures = QPaintEngine::AllFeatures};
enum DirtyFlag{
DirtyPen = QPaintEngine::DirtyPen, DirtyBrush = QPaintEngine::DirtyBrush, DirtyBrushOrigin = QPaintEngine::DirtyBrushOrigin, DirtyFont = QPaintEngine::DirtyFont, DirtyBackground = QPaintEngine::DirtyBackground, DirtyBackgroundMode = QPaintEngine::DirtyBackgroundMode, DirtyTransform = QPaintEngine::DirtyTransform, DirtyClipRegion = QPaintEngine::DirtyClipRegion, DirtyClipPath = QPaintEngine::DirtyClipPath, DirtyHints = QPaintEngine::DirtyHints, DirtyCompositionMode = QPaintEngine::DirtyCompositionMode, DirtyClipEnabled = QPaintEngine::DirtyClipEnabled, DirtyOpacity = QPaintEngine::DirtyOpacity, AllDirty = QPaintEngine::AllDirty};
Q_DECLARE_FLAGS(PaintEngineFeatures, PaintEngineFeature)
Q_DECLARE_FLAGS(DirtyFlags, DirtyFlag)
public slots:
QPaintEngine* new_QPaintEngine(QPaintEngine::PaintEngineFeatures features = 0);
void delete_QPaintEngine(QPaintEngine* obj) { delete obj; }
void clearDirty(QPaintEngine* theWrappedObject, QPaintEngine::DirtyFlags df);
QPoint coordinateOffset(QPaintEngine* theWrappedObject) const;
void drawEllipse(QPaintEngine* theWrappedObject, const QRect& r);
void drawEllipse(QPaintEngine* theWrappedObject, const QRectF& r);
void drawImage(QPaintEngine* theWrappedObject, const QRectF& r, const QImage& pm, const QRectF& sr, Qt::ImageConversionFlags flags = Qt::AutoColor);
void drawLines(QPaintEngine* theWrappedObject, const QLine* lines, int lineCount);
void drawLines(QPaintEngine* theWrappedObject, const QLineF* lines, int lineCount);
void drawPath(QPaintEngine* theWrappedObject, const QPainterPath& path);
void drawPoints(QPaintEngine* theWrappedObject, const QPoint* points, int pointCount);
void drawPoints(QPaintEngine* theWrappedObject, const QPointF* points, int pointCount);
void drawPolygon(QPaintEngine* theWrappedObject, const QPoint* points, int pointCount, QPaintEngine::PolygonDrawMode mode);
void drawPolygon(QPaintEngine* theWrappedObject, const QPointF* points, int pointCount, QPaintEngine::PolygonDrawMode mode);
void drawRects(QPaintEngine* theWrappedObject, const QRect* rects, int rectCount);
void drawRects(QPaintEngine* theWrappedObject, const QRectF* rects, int rectCount);
void drawTextItem(QPaintEngine* theWrappedObject, const QPointF& p, const QTextItem& textItem);
void drawTiledPixmap(QPaintEngine* theWrappedObject, const QRectF& r, const QPixmap& pixmap, const QPointF& s);
bool hasFeature(QPaintEngine* theWrappedObject, QPaintEngine::PaintEngineFeatures feature) const;
bool isActive(QPaintEngine* theWrappedObject) const;
bool isExtended(QPaintEngine* theWrappedObject) const;
QPaintDevice* paintDevice(QPaintEngine* theWrappedObject) const;
QPainter* painter(QPaintEngine* theWrappedObject) const;
void setActive(QPaintEngine* theWrappedObject, bool newState);
void setDirty(QPaintEngine* theWrappedObject, QPaintEngine::DirtyFlags df);
void setSystemClip(QPaintEngine* theWrappedObject, const QRegion& baseClip);
void setSystemRect(QPaintEngine* theWrappedObject, const QRect& rect);
void syncState(QPaintEngine* theWrappedObject);
QRegion systemClip(QPaintEngine* theWrappedObject) const;
QRect systemRect(QPaintEngine* theWrappedObject) const;
bool testDirty(QPaintEngine* theWrappedObject, QPaintEngine::DirtyFlags df);
};
class PythonQtShell_QPaintEngineState : public QPaintEngineState
{
public:
PythonQtShell_QPaintEngineState():QPaintEngineState(),_wrapper(NULL) {};
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QPaintEngineState : public QObject
{ Q_OBJECT
public:
public slots:
QPaintEngineState* new_QPaintEngineState();
void delete_QPaintEngineState(QPaintEngineState* obj) { delete obj; }
QBrush backgroundBrush(QPaintEngineState* theWrappedObject) const;
Qt::BGMode backgroundMode(QPaintEngineState* theWrappedObject) const;
QBrush brush(QPaintEngineState* theWrappedObject) const;
bool brushNeedsResolving(QPaintEngineState* theWrappedObject) const;
QPointF brushOrigin(QPaintEngineState* theWrappedObject) const;
Qt::ClipOperation clipOperation(QPaintEngineState* theWrappedObject) const;
QPainterPath clipPath(QPaintEngineState* theWrappedObject) const;
QRegion clipRegion(QPaintEngineState* theWrappedObject) const;
QPainter::CompositionMode compositionMode(QPaintEngineState* theWrappedObject) const;
QFont font(QPaintEngineState* theWrappedObject) const;
bool isClipEnabled(QPaintEngineState* theWrappedObject) const;
QMatrix matrix(QPaintEngineState* theWrappedObject) const;
qreal opacity(QPaintEngineState* theWrappedObject) const;
QPainter* painter(QPaintEngineState* theWrappedObject) const;
QPen pen(QPaintEngineState* theWrappedObject) const;
bool penNeedsResolving(QPaintEngineState* theWrappedObject) const;
QPainter::RenderHints renderHints(QPaintEngineState* theWrappedObject) const;
QPaintEngine::DirtyFlags state(QPaintEngineState* theWrappedObject) const;
QTransform transform(QPaintEngineState* theWrappedObject) const;
};
class PythonQtShell_QPaintEvent : public QPaintEvent
{
public:
PythonQtShell_QPaintEvent(const QRect& paintRect):QPaintEvent(paintRect),_wrapper(NULL) {};
PythonQtShell_QPaintEvent(const QRegion& paintRegion):QPaintEvent(paintRegion),_wrapper(NULL) {};
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QPaintEvent : public QObject
{ Q_OBJECT
public:
public slots:
QPaintEvent* new_QPaintEvent(const QRect& paintRect);
QPaintEvent* new_QPaintEvent(const QRegion& paintRegion);
void delete_QPaintEvent(QPaintEvent* obj) { delete obj; }
const QRect* rect(QPaintEvent* theWrappedObject) const;
const QRegion* region(QPaintEvent* theWrappedObject) const;
};
class PythonQtWrapper_QPainter : public QObject
{ Q_OBJECT
public:
Q_ENUMS(CompositionMode RenderHint )
Q_FLAGS(RenderHints )
enum CompositionMode{
CompositionMode_SourceOver = QPainter::CompositionMode_SourceOver, CompositionMode_DestinationOver = QPainter::CompositionMode_DestinationOver, CompositionMode_Clear = QPainter::CompositionMode_Clear, CompositionMode_Source = QPainter::CompositionMode_Source, CompositionMode_Destination = QPainter::CompositionMode_Destination, CompositionMode_SourceIn = QPainter::CompositionMode_SourceIn, CompositionMode_DestinationIn = QPainter::CompositionMode_DestinationIn, CompositionMode_SourceOut = QPainter::CompositionMode_SourceOut, CompositionMode_DestinationOut = QPainter::CompositionMode_DestinationOut, CompositionMode_SourceAtop = QPainter::CompositionMode_SourceAtop, CompositionMode_DestinationAtop = QPainter::CompositionMode_DestinationAtop, CompositionMode_Xor = QPainter::CompositionMode_Xor, CompositionMode_Plus = QPainter::CompositionMode_Plus, CompositionMode_Multiply = QPainter::CompositionMode_Multiply, CompositionMode_Screen = QPainter::CompositionMode_Screen, CompositionMode_Overlay = QPainter::CompositionMode_Overlay, CompositionMode_Darken = QPainter::CompositionMode_Darken, CompositionMode_Lighten = QPainter::CompositionMode_Lighten, CompositionMode_ColorDodge = QPainter::CompositionMode_ColorDodge, CompositionMode_ColorBurn = QPainter::CompositionMode_ColorBurn, CompositionMode_HardLight = QPainter::CompositionMode_HardLight, CompositionMode_SoftLight = QPainter::CompositionMode_SoftLight, CompositionMode_Difference = QPainter::CompositionMode_Difference, CompositionMode_Exclusion = QPainter::CompositionMode_Exclusion, RasterOp_SourceOrDestination = QPainter::RasterOp_SourceOrDestination, RasterOp_SourceAndDestination = QPainter::RasterOp_SourceAndDestination, RasterOp_SourceXorDestination = QPainter::RasterOp_SourceXorDestination, RasterOp_NotSourceAndNotDestination = QPainter::RasterOp_NotSourceAndNotDestination, RasterOp_NotSourceOrNotDestination = QPainter::RasterOp_NotSourceOrNotDestination, RasterOp_NotSourceXorDestination = QPainter::RasterOp_NotSourceXorDestination, RasterOp_NotSource = QPainter::RasterOp_NotSource, RasterOp_NotSourceAndDestination = QPainter::RasterOp_NotSourceAndDestination, RasterOp_SourceAndNotDestination = QPainter::RasterOp_SourceAndNotDestination};
enum RenderHint{
Antialiasing = QPainter::Antialiasing, TextAntialiasing = QPainter::TextAntialiasing, SmoothPixmapTransform = QPainter::SmoothPixmapTransform, HighQualityAntialiasing = QPainter::HighQualityAntialiasing, NonCosmeticDefaultPen = QPainter::NonCosmeticDefaultPen};
Q_DECLARE_FLAGS(RenderHints, RenderHint)
public slots:
QPainter* new_QPainter();
void delete_QPainter(QPainter* obj) { delete obj; }
const QBrush* background(QPainter* theWrappedObject) const;
Qt::BGMode backgroundMode(QPainter* theWrappedObject) const;
bool begin(QPainter* theWrappedObject, QPaintDevice* arg__1);
void beginNativePainting(QPainter* theWrappedObject);
QRect boundingRect(QPainter* theWrappedObject, const QRect& rect, int flags, const QString& text);
QRectF boundingRect(QPainter* theWrappedObject, const QRectF& rect, const QString& text, const QTextOption& o = QTextOption());
QRectF boundingRect(QPainter* theWrappedObject, const QRectF& rect, int flags, const QString& text);
QRect boundingRect(QPainter* theWrappedObject, int x, int y, int w, int h, int flags, const QString& text);
const QBrush* brush(QPainter* theWrappedObject) const;
QPoint brushOrigin(QPainter* theWrappedObject) const;
QPainterPath clipPath(QPainter* theWrappedObject) const;
QRegion clipRegion(QPainter* theWrappedObject) const;
QMatrix combinedMatrix(QPainter* theWrappedObject) const;
QTransform combinedTransform(QPainter* theWrappedObject) const;
QPainter::CompositionMode compositionMode(QPainter* theWrappedObject) const;
QPaintDevice* device(QPainter* theWrappedObject) const;
const QMatrix* deviceMatrix(QPainter* theWrappedObject) const;
const QTransform* deviceTransform(QPainter* theWrappedObject) const;
void drawArc(QPainter* theWrappedObject, const QRect& arg__1, int a, int alen);
void drawArc(QPainter* theWrappedObject, const QRectF& rect, int a, int alen);
void drawArc(QPainter* theWrappedObject, int x, int y, int w, int h, int a, int alen);
void drawChord(QPainter* theWrappedObject, const QRect& arg__1, int a, int alen);
void drawChord(QPainter* theWrappedObject, const QRectF& rect, int a, int alen);
void drawChord(QPainter* theWrappedObject, int x, int y, int w, int h, int a, int alen);
void drawConvexPolygon(QPainter* theWrappedObject, const QPolygon& polygon);
void drawConvexPolygon(QPainter* theWrappedObject, const QPolygonF& polygon);
void drawEllipse(QPainter* theWrappedObject, const QPoint& center, int rx, int ry);
void drawEllipse(QPainter* theWrappedObject, const QPointF& center, qreal rx, qreal ry);
void drawEllipse(QPainter* theWrappedObject, const QRect& r);
void drawEllipse(QPainter* theWrappedObject, const QRectF& r);
void drawEllipse(QPainter* theWrappedObject, int x, int y, int w, int h);
void drawImage(QPainter* theWrappedObject, const QPoint& p, const QImage& image);
void drawImage(QPainter* theWrappedObject, const QPoint& p, const QImage& image, const QRect& sr, Qt::ImageConversionFlags flags = Qt::AutoColor);
void drawImage(QPainter* theWrappedObject, const QPointF& p, const QImage& image);
void drawImage(QPainter* theWrappedObject, const QPointF& p, const QImage& image, const QRectF& sr, Qt::ImageConversionFlags flags = Qt::AutoColor);
void drawImage(QPainter* theWrappedObject, const QRect& r, const QImage& image);
void drawImage(QPainter* theWrappedObject, const QRect& targetRect, const QImage& image, const QRect& sourceRect, Qt::ImageConversionFlags flags = Qt::AutoColor);
void drawImage(QPainter* theWrappedObject, const QRectF& r, const QImage& image);
void drawImage(QPainter* theWrappedObject, const QRectF& targetRect, const QImage& image, const QRectF& sourceRect, Qt::ImageConversionFlags flags = Qt::AutoColor);
void drawImage(QPainter* theWrappedObject, int x, int y, const QImage& image, int sx = 0, int sy = 0, int sw = -1, int sh = -1, Qt::ImageConversionFlags flags = Qt::AutoColor);
void drawLine(QPainter* theWrappedObject, const QLine& line);
void drawLine(QPainter* theWrappedObject, const QLineF& line);
void drawLine(QPainter* theWrappedObject, const QPoint& p1, const QPoint& p2);
void drawLine(QPainter* theWrappedObject, const QPointF& p1, const QPointF& p2);
void drawLine(QPainter* theWrappedObject, int x1, int y1, int x2, int y2);
void drawLines(QPainter* theWrappedObject, const QVector<QLine >& lines);
void drawLines(QPainter* theWrappedObject, const QVector<QLineF >& lines);
void drawLines(QPainter* theWrappedObject, const QVector<QPoint >& pointPairs);
void drawLines(QPainter* theWrappedObject, const QVector<QPointF >& pointPairs);
void drawPath(QPainter* theWrappedObject, const QPainterPath& path);
void drawPicture(QPainter* theWrappedObject, const QPoint& p, const QPicture& picture);
void drawPicture(QPainter* theWrappedObject, const QPointF& p, const QPicture& picture);
void drawPicture(QPainter* theWrappedObject, int x, int y, const QPicture& picture);
void drawPie(QPainter* theWrappedObject, const QRect& arg__1, int a, int alen);
void drawPie(QPainter* theWrappedObject, const QRectF& rect, int a, int alen);
void drawPie(QPainter* theWrappedObject, int x, int y, int w, int h, int a, int alen);
void drawPixmap(QPainter* theWrappedObject, const QPoint& p, const QPixmap& pm);
void drawPixmap(QPainter* theWrappedObject, const QPoint& p, const QPixmap& pm, const QRect& sr);
void drawPixmap(QPainter* theWrappedObject, const QPointF& p, const QPixmap& pm);
void drawPixmap(QPainter* theWrappedObject, const QPointF& p, const QPixmap& pm, const QRectF& sr);
void drawPixmap(QPainter* theWrappedObject, const QRect& r, const QPixmap& pm);
void drawPixmap(QPainter* theWrappedObject, const QRect& targetRect, const QPixmap& pixmap, const QRect& sourceRect);
void drawPixmap(QPainter* theWrappedObject, const QRectF& targetRect, const QPixmap& pixmap, const QRectF& sourceRect);
void drawPixmap(QPainter* theWrappedObject, int x, int y, const QPixmap& pm);
void drawPixmap(QPainter* theWrappedObject, int x, int y, const QPixmap& pm, int sx, int sy, int sw, int sh);
void drawPixmap(QPainter* theWrappedObject, int x, int y, int w, int h, const QPixmap& pm);
void drawPixmap(QPainter* theWrappedObject, int x, int y, int w, int h, const QPixmap& pm, int sx, int sy, int sw, int sh);
void drawPoint(QPainter* theWrappedObject, const QPoint& p);
void drawPoint(QPainter* theWrappedObject, const QPointF& pt);
void drawPoint(QPainter* theWrappedObject, int x, int y);
void drawPoints(QPainter* theWrappedObject, const QPolygon& points);
void drawPoints(QPainter* theWrappedObject, const QPolygonF& points);
void drawPolygon(QPainter* theWrappedObject, const QPolygon& polygon, Qt::FillRule fillRule = Qt::OddEvenFill);
void drawPolygon(QPainter* theWrappedObject, const QPolygonF& polygon, Qt::FillRule fillRule = Qt::OddEvenFill);
void drawPolyline(QPainter* theWrappedObject, const QPolygon& polygon);
void drawPolyline(QPainter* theWrappedObject, const QPolygonF& polyline);
void drawRect(QPainter* theWrappedObject, const QRect& rect);
void drawRect(QPainter* theWrappedObject, const QRectF& rect);
void drawRect(QPainter* theWrappedObject, int x1, int y1, int w, int h);
void drawRects(QPainter* theWrappedObject, const QVector<QRect >& rectangles);
void drawRects(QPainter* theWrappedObject, const QVector<QRectF >& rectangles);
void drawRoundRect(QPainter* theWrappedObject, const QRect& r, int xround = 25, int yround = 25);
void drawRoundRect(QPainter* theWrappedObject, const QRectF& r, int xround = 25, int yround = 25);
void drawRoundRect(QPainter* theWrappedObject, int x, int y, int w, int h, int arg__5 = 25, int arg__6 = 25);
void drawRoundedRect(QPainter* theWrappedObject, const QRect& rect, qreal xRadius, qreal yRadius, Qt::SizeMode mode = Qt::AbsoluteSize);
void drawRoundedRect(QPainter* theWrappedObject, const QRectF& rect, qreal xRadius, qreal yRadius, Qt::SizeMode mode = Qt::AbsoluteSize);
void drawRoundedRect(QPainter* theWrappedObject, int x, int y, int w, int h, qreal xRadius, qreal yRadius, Qt::SizeMode mode = Qt::AbsoluteSize);
void drawText(QPainter* theWrappedObject, const QPoint& p, const QString& s);
void drawText(QPainter* theWrappedObject, const QPointF& p, const QString& s);
void drawText(QPainter* theWrappedObject, const QRect& r, int flags, const QString& text, QRect* br = 0);
void drawText(QPainter* theWrappedObject, const QRectF& r, const QString& text, const QTextOption& o = QTextOption());
void drawText(QPainter* theWrappedObject, const QRectF& r, int flags, const QString& text, QRectF* br = 0);
void drawText(QPainter* theWrappedObject, int x, int y, const QString& s);
void drawText(QPainter* theWrappedObject, int x, int y, int w, int h, int flags, const QString& text, QRect* br = 0);
void drawTextItem(QPainter* theWrappedObject, const QPoint& p, const QTextItem& ti);
void drawTextItem(QPainter* theWrappedObject, const QPointF& p, const QTextItem& ti);
void drawTextItem(QPainter* theWrappedObject, int x, int y, const QTextItem& ti);
void drawTiledPixmap(QPainter* theWrappedObject, const QRect& arg__1, const QPixmap& arg__2, const QPoint& arg__3 = QPoint());
void drawTiledPixmap(QPainter* theWrappedObject, const QRectF& rect, const QPixmap& pm, const QPointF& offset = QPointF());
void drawTiledPixmap(QPainter* theWrappedObject, int x, int y, int w, int h, const QPixmap& arg__5, int sx = 0, int sy = 0);
bool end(QPainter* theWrappedObject);
void endNativePainting(QPainter* theWrappedObject);
void eraseRect(QPainter* theWrappedObject, const QRect& arg__1);
void eraseRect(QPainter* theWrappedObject, const QRectF& arg__1);
void eraseRect(QPainter* theWrappedObject, int x, int y, int w, int h);
void fillPath(QPainter* theWrappedObject, const QPainterPath& path, const QBrush& brush);
void fillRect(QPainter* theWrappedObject, const QRect& arg__1, const QBrush& arg__2);
void fillRect(QPainter* theWrappedObject, const QRect& arg__1, const QColor& color);
void fillRect(QPainter* theWrappedObject, const QRect& r, Qt::BrushStyle style);
void fillRect(QPainter* theWrappedObject, const QRect& r, Qt::GlobalColor c);
void fillRect(QPainter* theWrappedObject, const QRectF& arg__1, const QBrush& arg__2);
void fillRect(QPainter* theWrappedObject, const QRectF& arg__1, const QColor& color);
void fillRect(QPainter* theWrappedObject, const QRectF& r, Qt::BrushStyle style);
void fillRect(QPainter* theWrappedObject, const QRectF& r, Qt::GlobalColor c);
void fillRect(QPainter* theWrappedObject, int x, int y, int w, int h, Qt::BrushStyle style);
void fillRect(QPainter* theWrappedObject, int x, int y, int w, int h, Qt::GlobalColor c);
void fillRect(QPainter* theWrappedObject, int x, int y, int w, int h, const QBrush& arg__5);
void fillRect(QPainter* theWrappedObject, int x, int y, int w, int h, const QColor& color);
const QFont* font(QPainter* theWrappedObject) const;
bool hasClipping(QPainter* theWrappedObject) const;
void initFrom(QPainter* theWrappedObject, const QWidget* widget);
bool isActive(QPainter* theWrappedObject) const;
Qt::LayoutDirection layoutDirection(QPainter* theWrappedObject) const;
qreal opacity(QPainter* theWrappedObject) const;
QPaintEngine* paintEngine(QPainter* theWrappedObject) const;
const QPen* pen(QPainter* theWrappedObject) const;
QPaintDevice* static_QPainter_redirected(const QPaintDevice* device, QPoint* offset = 0);
QPainter::RenderHints renderHints(QPainter* theWrappedObject) const;
void resetMatrix(QPainter* theWrappedObject);
void resetTransform(QPainter* theWrappedObject);
void restore(QPainter* theWrappedObject);
void static_QPainter_restoreRedirected(const QPaintDevice* device);
void rotate(QPainter* theWrappedObject, qreal a);
void save(QPainter* theWrappedObject);
void scale(QPainter* theWrappedObject, qreal sx, qreal sy);
void setBackground(QPainter* theWrappedObject, const QBrush& bg);
void setBackgroundMode(QPainter* theWrappedObject, Qt::BGMode mode);
void setBrush(QPainter* theWrappedObject, Qt::BrushStyle style);
void setBrush(QPainter* theWrappedObject, const QBrush& brush);
void setBrushOrigin(QPainter* theWrappedObject, const QPoint& arg__1);
void setBrushOrigin(QPainter* theWrappedObject, const QPointF& arg__1);
void setBrushOrigin(QPainter* theWrappedObject, int x, int y);
void setClipPath(QPainter* theWrappedObject, const QPainterPath& path, Qt::ClipOperation op = Qt::ReplaceClip);
void setClipRect(QPainter* theWrappedObject, const QRect& arg__1, Qt::ClipOperation op = Qt::ReplaceClip);
void setClipRect(QPainter* theWrappedObject, const QRectF& arg__1, Qt::ClipOperation op = Qt::ReplaceClip);
void setClipRect(QPainter* theWrappedObject, int x, int y, int w, int h, Qt::ClipOperation op = Qt::ReplaceClip);
void setClipRegion(QPainter* theWrappedObject, const QRegion& arg__1, Qt::ClipOperation op = Qt::ReplaceClip);
void setClipping(QPainter* theWrappedObject, bool enable);
void setCompositionMode(QPainter* theWrappedObject, QPainter::CompositionMode mode);
void setFont(QPainter* theWrappedObject, const QFont& f);
void setLayoutDirection(QPainter* theWrappedObject, Qt::LayoutDirection direction);
void setOpacity(QPainter* theWrappedObject, qreal opacity);
void setPen(QPainter* theWrappedObject, Qt::PenStyle style);
void setPen(QPainter* theWrappedObject, const QColor& color);
void setPen(QPainter* theWrappedObject, const QPen& pen);
void static_QPainter_setRedirected(const QPaintDevice* device, QPaintDevice* replacement, const QPoint& offset = QPoint());
void setRenderHint(QPainter* theWrappedObject, QPainter::RenderHint hint, bool on = true);
void setRenderHints(QPainter* theWrappedObject, QPainter::RenderHints hints, bool on = true);
void setTransform(QPainter* theWrappedObject, const QTransform& transform, bool combine = false);
void setViewTransformEnabled(QPainter* theWrappedObject, bool enable);
void setViewport(QPainter* theWrappedObject, const QRect& viewport);
void setViewport(QPainter* theWrappedObject, int x, int y, int w, int h);
void setWindow(QPainter* theWrappedObject, const QRect& window);
void setWindow(QPainter* theWrappedObject, int x, int y, int w, int h);
void setWorldMatrix(QPainter* theWrappedObject, const QMatrix& matrix, bool combine = false);
void setWorldMatrixEnabled(QPainter* theWrappedObject, bool enabled);
void setWorldTransform(QPainter* theWrappedObject, const QTransform& matrix, bool combine = false);
void shear(QPainter* theWrappedObject, qreal sh, qreal sv);
void strokePath(QPainter* theWrappedObject, const QPainterPath& path, const QPen& pen);
bool testRenderHint(QPainter* theWrappedObject, QPainter::RenderHint hint) const;
const QTransform* transform(QPainter* theWrappedObject) const;
void translate(QPainter* theWrappedObject, const QPoint& offset);
void translate(QPainter* theWrappedObject, const QPointF& offset);
void translate(QPainter* theWrappedObject, qreal dx, qreal dy);
bool viewTransformEnabled(QPainter* theWrappedObject) const;
QRect viewport(QPainter* theWrappedObject) const;
QRect window(QPainter* theWrappedObject) const;
const QMatrix* worldMatrix(QPainter* theWrappedObject) const;
bool worldMatrixEnabled(QPainter* theWrappedObject) const;
const QTransform* worldTransform(QPainter* theWrappedObject) const;
};
class PythonQtWrapper_QPainterPath : public QObject
{ Q_OBJECT
public:
Q_ENUMS(ElementType )
enum ElementType{
MoveToElement = QPainterPath::MoveToElement, LineToElement = QPainterPath::LineToElement, CurveToElement = QPainterPath::CurveToElement, CurveToDataElement = QPainterPath::CurveToDataElement};
public slots:
QPainterPath* new_QPainterPath();
QPainterPath* new_QPainterPath(const QPainterPath& other);
QPainterPath* new_QPainterPath(const QPointF& startPoint);
void delete_QPainterPath(QPainterPath* obj) { delete obj; }
void addEllipse(QPainterPath* theWrappedObject, const QPointF& center, qreal rx, qreal ry);
void addEllipse(QPainterPath* theWrappedObject, const QRectF& rect);
void addEllipse(QPainterPath* theWrappedObject, qreal x, qreal y, qreal w, qreal h);
void addPath(QPainterPath* theWrappedObject, const QPainterPath& path);
void addPolygon(QPainterPath* theWrappedObject, const QPolygonF& polygon);
void addRect(QPainterPath* theWrappedObject, const QRectF& rect);
void addRect(QPainterPath* theWrappedObject, qreal x, qreal y, qreal w, qreal h);
void addRegion(QPainterPath* theWrappedObject, const QRegion& region);
void addRoundRect(QPainterPath* theWrappedObject, const QRectF& rect, int roundness);
void addRoundRect(QPainterPath* theWrappedObject, const QRectF& rect, int xRnd, int yRnd);
void addRoundRect(QPainterPath* theWrappedObject, qreal x, qreal y, qreal w, qreal h, int roundness);
void addRoundRect(QPainterPath* theWrappedObject, qreal x, qreal y, qreal w, qreal h, int xRnd, int yRnd);
void addRoundedRect(QPainterPath* theWrappedObject, const QRectF& rect, qreal xRadius, qreal yRadius, Qt::SizeMode mode = Qt::AbsoluteSize);
void addRoundedRect(QPainterPath* theWrappedObject, qreal x, qreal y, qreal w, qreal h, qreal xRadius, qreal yRadius, Qt::SizeMode mode = Qt::AbsoluteSize);
void addText(QPainterPath* theWrappedObject, const QPointF& point, const QFont& f, const QString& text);
void addText(QPainterPath* theWrappedObject, qreal x, qreal y, const QFont& f, const QString& text);
qreal angleAtPercent(QPainterPath* theWrappedObject, qreal t) const;
void arcMoveTo(QPainterPath* theWrappedObject, const QRectF& rect, qreal angle);
void arcMoveTo(QPainterPath* theWrappedObject, qreal x, qreal y, qreal w, qreal h, qreal angle);
void arcTo(QPainterPath* theWrappedObject, const QRectF& rect, qreal startAngle, qreal arcLength);
void arcTo(QPainterPath* theWrappedObject, qreal x, qreal y, qreal w, qreal h, qreal startAngle, qreal arcLength);
QRectF boundingRect(QPainterPath* theWrappedObject) const;
void closeSubpath(QPainterPath* theWrappedObject);
void connectPath(QPainterPath* theWrappedObject, const QPainterPath& path);
bool contains(QPainterPath* theWrappedObject, const QPainterPath& p) const;
bool contains(QPainterPath* theWrappedObject, const QPointF& pt) const;
bool contains(QPainterPath* theWrappedObject, const QRectF& rect) const;
QRectF controlPointRect(QPainterPath* theWrappedObject) const;
void cubicTo(QPainterPath* theWrappedObject, const QPointF& ctrlPt1, const QPointF& ctrlPt2, const QPointF& endPt);
void cubicTo(QPainterPath* theWrappedObject, qreal ctrlPt1x, qreal ctrlPt1y, qreal ctrlPt2x, qreal ctrlPt2y, qreal endPtx, qreal endPty);
QPointF currentPosition(QPainterPath* theWrappedObject) const;
const QPainterPath::Element* elementAt(QPainterPath* theWrappedObject, int i) const;
int elementCount(QPainterPath* theWrappedObject) const;
Qt::FillRule fillRule(QPainterPath* theWrappedObject) const;
QPainterPath intersected(QPainterPath* theWrappedObject, const QPainterPath& r) const;
bool intersects(QPainterPath* theWrappedObject, const QPainterPath& p) const;
bool intersects(QPainterPath* theWrappedObject, const QRectF& rect) const;
bool isEmpty(QPainterPath* theWrappedObject) const;
qreal length(QPainterPath* theWrappedObject) const;
void lineTo(QPainterPath* theWrappedObject, const QPointF& p);
void lineTo(QPainterPath* theWrappedObject, qreal x, qreal y);
void moveTo(QPainterPath* theWrappedObject, const QPointF& p);
void moveTo(QPainterPath* theWrappedObject, qreal x, qreal y);
bool __ne__(QPainterPath* theWrappedObject, const QPainterPath& other) const;
QPainterPath __and__(QPainterPath* theWrappedObject, const QPainterPath& other) const;
QPainterPath* __iand__(QPainterPath* theWrappedObject, const QPainterPath& other);
QPainterPath __mul__(QPainterPath* theWrappedObject, const QMatrix& m);
QPainterPath __mul__(QPainterPath* theWrappedObject, const QTransform& m);
QPainterPath __add__(QPainterPath* theWrappedObject, const QPainterPath& other) const;
QPainterPath* __iadd__(QPainterPath* theWrappedObject, const QPainterPath& other);
QPainterPath __sub__(QPainterPath* theWrappedObject, const QPainterPath& other) const;
QPainterPath* __isub__(QPainterPath* theWrappedObject, const QPainterPath& other);
void writeTo(QPainterPath* theWrappedObject, QDataStream& arg__1);
bool __eq__(QPainterPath* theWrappedObject, const QPainterPath& other) const;
void readFrom(QPainterPath* theWrappedObject, QDataStream& arg__1);
QPainterPath __or__(QPainterPath* theWrappedObject, const QPainterPath& other) const;
QPainterPath* __ior__(QPainterPath* theWrappedObject, const QPainterPath& other);
qreal percentAtLength(QPainterPath* theWrappedObject, qreal t) const;
QPointF pointAtPercent(QPainterPath* theWrappedObject, qreal t) const;
void quadTo(QPainterPath* theWrappedObject, const QPointF& ctrlPt, const QPointF& endPt);
void quadTo(QPainterPath* theWrappedObject, qreal ctrlPtx, qreal ctrlPty, qreal endPtx, qreal endPty);
void setElementPositionAt(QPainterPath* theWrappedObject, int i, qreal x, qreal y);
void setFillRule(QPainterPath* theWrappedObject, Qt::FillRule fillRule);
QPainterPath simplified(QPainterPath* theWrappedObject) const;
qreal slopeAtPercent(QPainterPath* theWrappedObject, qreal t) const;
QPainterPath subtracted(QPainterPath* theWrappedObject, const QPainterPath& r) const;
QPainterPath subtractedInverted(QPainterPath* theWrappedObject, const QPainterPath& r) const;
QPolygonF toFillPolygon(QPainterPath* theWrappedObject, const QMatrix& matrix = QMatrix()) const;
QPolygonF toFillPolygon(QPainterPath* theWrappedObject, const QTransform& matrix) const;
QList<QPolygonF > toFillPolygons(QPainterPath* theWrappedObject, const QMatrix& matrix = QMatrix()) const;
QList<QPolygonF > toFillPolygons(QPainterPath* theWrappedObject, const QTransform& matrix) const;
QPainterPath toReversed(QPainterPath* theWrappedObject) const;
QList<QPolygonF > toSubpathPolygons(QPainterPath* theWrappedObject, const QMatrix& matrix = QMatrix()) const;
QList<QPolygonF > toSubpathPolygons(QPainterPath* theWrappedObject, const QTransform& matrix) const;
void translate(QPainterPath* theWrappedObject, const QPointF& offset);
void translate(QPainterPath* theWrappedObject, qreal dx, qreal dy);
QPainterPath translated(QPainterPath* theWrappedObject, const QPointF& offset) const;
QPainterPath translated(QPainterPath* theWrappedObject, qreal dx, qreal dy) const;
QPainterPath united(QPainterPath* theWrappedObject, const QPainterPath& r) const;
QString py_toString(QPainterPath*);
};
class PythonQtWrapper_QPainterPathStroker : public QObject
{ Q_OBJECT
public:
public slots:
QPainterPathStroker* new_QPainterPathStroker();
void delete_QPainterPathStroker(QPainterPathStroker* obj) { delete obj; }
Qt::PenCapStyle capStyle(QPainterPathStroker* theWrappedObject) const;
QPainterPath createStroke(QPainterPathStroker* theWrappedObject, const QPainterPath& path) const;
qreal curveThreshold(QPainterPathStroker* theWrappedObject) const;
qreal dashOffset(QPainterPathStroker* theWrappedObject) const;
QVector<qreal > dashPattern(QPainterPathStroker* theWrappedObject) const;
Qt::PenJoinStyle joinStyle(QPainterPathStroker* theWrappedObject) const;
qreal miterLimit(QPainterPathStroker* theWrappedObject) const;
void setCapStyle(QPainterPathStroker* theWrappedObject, Qt::PenCapStyle style);
void setCurveThreshold(QPainterPathStroker* theWrappedObject, qreal threshold);
void setDashOffset(QPainterPathStroker* theWrappedObject, qreal offset);
void setDashPattern(QPainterPathStroker* theWrappedObject, Qt::PenStyle arg__1);
void setDashPattern(QPainterPathStroker* theWrappedObject, const QVector<qreal >& dashPattern);
void setJoinStyle(QPainterPathStroker* theWrappedObject, Qt::PenJoinStyle style);
void setMiterLimit(QPainterPathStroker* theWrappedObject, qreal length);
void setWidth(QPainterPathStroker* theWrappedObject, qreal width);
qreal width(QPainterPathStroker* theWrappedObject) const;
};
class PythonQtShell_QPanGesture : public QPanGesture
{
public:
PythonQtShell_QPanGesture(QObject* parent = 0):QPanGesture(parent),_wrapper(NULL) {};
virtual void childEvent(QChildEvent* arg__1);
virtual void customEvent(QEvent* arg__1);
virtual bool event(QEvent* arg__1);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
virtual void timerEvent(QTimerEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QPanGesture : public QObject
{ Q_OBJECT
public:
public slots:
QPanGesture* new_QPanGesture(QObject* parent = 0);
void delete_QPanGesture(QPanGesture* obj) { delete obj; }
qreal acceleration(QPanGesture* theWrappedObject) const;
QPointF delta(QPanGesture* theWrappedObject) const;
QPointF lastOffset(QPanGesture* theWrappedObject) const;
QPointF offset(QPanGesture* theWrappedObject) const;
void setAcceleration(QPanGesture* theWrappedObject, qreal value);
void setLastOffset(QPanGesture* theWrappedObject, const QPointF& value);
void setOffset(QPanGesture* theWrappedObject, const QPointF& value);
};
class PythonQtShell_QPicture : public QPicture
{
public:
PythonQtShell_QPicture(const QPicture& arg__1):QPicture(arg__1),_wrapper(NULL) {};
PythonQtShell_QPicture(int formatVersion = -1):QPicture(formatVersion),_wrapper(NULL) {};
virtual int devType() const;
virtual int metric(QPaintDevice::PaintDeviceMetric m) const;
virtual QPaintEngine* paintEngine() const;
virtual void setData(const char* data, uint size);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QPicture : public QPicture
{ public:
inline int promoted_devType() const { return QPicture::devType(); }
inline int promoted_metric(QPaintDevice::PaintDeviceMetric m) const { return QPicture::metric(m); }
inline QPaintEngine* promoted_paintEngine() const { return QPicture::paintEngine(); }
};
class PythonQtWrapper_QPicture : public QObject
{ Q_OBJECT
public:
public slots:
QPicture* new_QPicture(const QPicture& arg__1);
QPicture* new_QPicture(int formatVersion = -1);
void delete_QPicture(QPicture* obj) { delete obj; }
QRect boundingRect(QPicture* theWrappedObject) const;
const char* data(QPicture* theWrappedObject) const;
int devType(QPicture* theWrappedObject) const;
bool isNull(QPicture* theWrappedObject) const;
bool load(QPicture* theWrappedObject, QIODevice* dev, const char* format = 0);
bool load(QPicture* theWrappedObject, const QString& fileName, const char* format = 0);
int metric(QPicture* theWrappedObject, QPaintDevice::PaintDeviceMetric m) const;
void writeTo(QPicture* theWrappedObject, QDataStream& arg__1);
void readFrom(QPicture* theWrappedObject, QDataStream& arg__1);
QPaintEngine* paintEngine(QPicture* theWrappedObject) const;
bool play(QPicture* theWrappedObject, QPainter* p);
bool save(QPicture* theWrappedObject, QIODevice* dev, const char* format = 0);
bool save(QPicture* theWrappedObject, const QString& fileName, const char* format = 0);
void setBoundingRect(QPicture* theWrappedObject, const QRect& r);
uint size(QPicture* theWrappedObject) const;
bool __nonzero__(QPicture* obj) { return !obj->isNull(); }
};
class PythonQtShell_QPictureFormatPlugin : public QPictureFormatPlugin
{
public:
PythonQtShell_QPictureFormatPlugin(QObject* parent = 0):QPictureFormatPlugin(parent),_wrapper(NULL) {};
virtual void childEvent(QChildEvent* arg__1);
virtual void customEvent(QEvent* arg__1);
virtual bool event(QEvent* arg__1);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
virtual bool installIOHandler(const QString& format);
virtual QStringList keys() const;
virtual bool loadPicture(const QString& format, const QString& filename, QPicture* pic);
virtual bool savePicture(const QString& format, const QString& filename, const QPicture& pic);
virtual void timerEvent(QTimerEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QPictureFormatPlugin : public QPictureFormatPlugin
{ public:
inline bool promoted_loadPicture(const QString& format, const QString& filename, QPicture* pic) { return QPictureFormatPlugin::loadPicture(format, filename, pic); }
inline bool promoted_savePicture(const QString& format, const QString& filename, const QPicture& pic) { return QPictureFormatPlugin::savePicture(format, filename, pic); }
};
class PythonQtWrapper_QPictureFormatPlugin : public QObject
{ Q_OBJECT
public:
public slots:
QPictureFormatPlugin* new_QPictureFormatPlugin(QObject* parent = 0);
void delete_QPictureFormatPlugin(QPictureFormatPlugin* obj) { delete obj; }
bool loadPicture(QPictureFormatPlugin* theWrappedObject, const QString& format, const QString& filename, QPicture* pic);
bool savePicture(QPictureFormatPlugin* theWrappedObject, const QString& format, const QString& filename, const QPicture& pic);
};
class PythonQtWrapper_QPictureIO : public QObject
{ Q_OBJECT
public:
public slots:
QPictureIO* new_QPictureIO();
QPictureIO* new_QPictureIO(QIODevice* ioDevice, const char* format);
QPictureIO* new_QPictureIO(const QString& fileName, const char* format);
void delete_QPictureIO(QPictureIO* obj) { delete obj; }
QString description(QPictureIO* theWrappedObject) const;
QString fileName(QPictureIO* theWrappedObject) const;
const char* format(QPictureIO* theWrappedObject) const;
float gamma(QPictureIO* theWrappedObject) const;
QList<QByteArray > static_QPictureIO_inputFormats();
QIODevice* ioDevice(QPictureIO* theWrappedObject) const;
QList<QByteArray > static_QPictureIO_outputFormats();
const char* parameters(QPictureIO* theWrappedObject) const;
const QPicture* picture(QPictureIO* theWrappedObject) const;
QByteArray static_QPictureIO_pictureFormat(QIODevice* arg__1);
QByteArray static_QPictureIO_pictureFormat(const QString& fileName);
int quality(QPictureIO* theWrappedObject) const;
bool read(QPictureIO* theWrappedObject);
void setDescription(QPictureIO* theWrappedObject, const QString& arg__1);
void setFileName(QPictureIO* theWrappedObject, const QString& arg__1);
void setFormat(QPictureIO* theWrappedObject, const char* arg__1);
void setGamma(QPictureIO* theWrappedObject, float arg__1);
void setIODevice(QPictureIO* theWrappedObject, QIODevice* arg__1);
void setParameters(QPictureIO* theWrappedObject, const char* arg__1);
void setPicture(QPictureIO* theWrappedObject, const QPicture& arg__1);
void setQuality(QPictureIO* theWrappedObject, int arg__1);
void setStatus(QPictureIO* theWrappedObject, int arg__1);
int status(QPictureIO* theWrappedObject) const;
bool write(QPictureIO* theWrappedObject);
};
class PythonQtShell_QPinchGesture : public QPinchGesture
{
public:
PythonQtShell_QPinchGesture(QObject* parent = 0):QPinchGesture(parent),_wrapper(NULL) {};
virtual void childEvent(QChildEvent* arg__1);
virtual void customEvent(QEvent* arg__1);
virtual bool event(QEvent* arg__1);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
virtual void timerEvent(QTimerEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QPinchGesture : public QObject
{ Q_OBJECT
public:
public slots:
QPinchGesture* new_QPinchGesture(QObject* parent = 0);
void delete_QPinchGesture(QPinchGesture* obj) { delete obj; }
QPointF centerPoint(QPinchGesture* theWrappedObject) const;
QPointF lastCenterPoint(QPinchGesture* theWrappedObject) const;
qreal lastRotationAngle(QPinchGesture* theWrappedObject) const;
qreal lastScaleFactor(QPinchGesture* theWrappedObject) const;
qreal rotationAngle(QPinchGesture* theWrappedObject) const;
qreal scaleFactor(QPinchGesture* theWrappedObject) const;
void setCenterPoint(QPinchGesture* theWrappedObject, const QPointF& value);
void setLastCenterPoint(QPinchGesture* theWrappedObject, const QPointF& value);
void setLastRotationAngle(QPinchGesture* theWrappedObject, qreal value);
void setLastScaleFactor(QPinchGesture* theWrappedObject, qreal value);
void setRotationAngle(QPinchGesture* theWrappedObject, qreal value);
void setScaleFactor(QPinchGesture* theWrappedObject, qreal value);
void setStartCenterPoint(QPinchGesture* theWrappedObject, const QPointF& value);
void setTotalRotationAngle(QPinchGesture* theWrappedObject, qreal value);
void setTotalScaleFactor(QPinchGesture* theWrappedObject, qreal value);
QPointF startCenterPoint(QPinchGesture* theWrappedObject) const;
qreal totalRotationAngle(QPinchGesture* theWrappedObject) const;
qreal totalScaleFactor(QPinchGesture* theWrappedObject) const;
};
class PythonQtShell_QPixmapCache : public QPixmapCache
{
public:
PythonQtShell_QPixmapCache():QPixmapCache(),_wrapper(NULL) {};
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QPixmapCache : public QObject
{ Q_OBJECT
public:
public slots:
QPixmapCache* new_QPixmapCache();
void delete_QPixmapCache(QPixmapCache* obj) { delete obj; }
int static_QPixmapCache_cacheLimit();
void static_QPixmapCache_clear();
bool static_QPixmapCache_find(const QPixmapCache::Key& key, QPixmap* pixmap);
bool static_QPixmapCache_find(const QString& key, QPixmap& pixmap);
QPixmapCache::Key static_QPixmapCache_insert(const QPixmap& pixmap);
bool static_QPixmapCache_insert(const QString& key, const QPixmap& pixmap);
void static_QPixmapCache_remove(const QPixmapCache::Key& key);
void static_QPixmapCache_remove(const QString& key);
bool static_QPixmapCache_replace(const QPixmapCache::Key& key, const QPixmap& pixmap);
void static_QPixmapCache_setCacheLimit(int arg__1);
};
class PythonQtWrapper_QPixmapCache_Key : public QObject
{ Q_OBJECT
public:
public slots:
QPixmapCache::Key* new_QPixmapCache_Key();
QPixmapCache::Key* new_QPixmapCache_Key(const QPixmapCache::Key& other);
void delete_QPixmapCache_Key(QPixmapCache::Key* obj) { delete obj; }
bool __ne__(QPixmapCache::Key* theWrappedObject, const QPixmapCache::Key& key) const;
QPixmapCache::Key* operator_assign(QPixmapCache::Key* theWrappedObject, const QPixmapCache::Key& other);
bool __eq__(QPixmapCache::Key* theWrappedObject, const QPixmapCache::Key& key) const;
};
class PythonQtShell_QPlainTextDocumentLayout : public QPlainTextDocumentLayout
{
public:
PythonQtShell_QPlainTextDocumentLayout(QTextDocument* document):QPlainTextDocumentLayout(document),_wrapper(NULL) {};
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QPlainTextDocumentLayout : public QObject
{ Q_OBJECT
public:
public slots:
QPlainTextDocumentLayout* new_QPlainTextDocumentLayout(QTextDocument* document);
void delete_QPlainTextDocumentLayout(QPlainTextDocumentLayout* obj) { delete obj; }
QRectF blockBoundingRect(QPlainTextDocumentLayout* theWrappedObject, const QTextBlock& block) const;
int cursorWidth(QPlainTextDocumentLayout* theWrappedObject) const;
QSizeF documentSize(QPlainTextDocumentLayout* theWrappedObject) const;
void draw(QPlainTextDocumentLayout* theWrappedObject, QPainter* arg__1, const QAbstractTextDocumentLayout::PaintContext& arg__2);
void ensureBlockLayout(QPlainTextDocumentLayout* theWrappedObject, const QTextBlock& block) const;
QRectF frameBoundingRect(QPlainTextDocumentLayout* theWrappedObject, QTextFrame* arg__1) const;
int hitTest(QPlainTextDocumentLayout* theWrappedObject, const QPointF& arg__1, Qt::HitTestAccuracy arg__2) const;
int pageCount(QPlainTextDocumentLayout* theWrappedObject) const;
void requestUpdate(QPlainTextDocumentLayout* theWrappedObject);
void setCursorWidth(QPlainTextDocumentLayout* theWrappedObject, int width);
};
class PythonQtShell_QPlainTextEdit : public QPlainTextEdit
{
public:
PythonQtShell_QPlainTextEdit(QWidget* parent = 0):QPlainTextEdit(parent),_wrapper(NULL) {};
PythonQtShell_QPlainTextEdit(const QString& text, QWidget* parent = 0):QPlainTextEdit(text, parent),_wrapper(NULL) {};
virtual void actionEvent(QActionEvent* arg__1);
virtual bool canInsertFromMimeData(const QMimeData* source) const;
virtual void changeEvent(QEvent* e);
virtual void childEvent(QChildEvent* arg__1);
virtual void closeEvent(QCloseEvent* arg__1);
virtual void contextMenuEvent(QContextMenuEvent* e);
virtual QMimeData* createMimeDataFromSelection() const;
virtual void customEvent(QEvent* arg__1);
virtual int devType() const;
virtual void dragEnterEvent(QDragEnterEvent* e);
virtual void dragLeaveEvent(QDragLeaveEvent* e);
virtual void dragMoveEvent(QDragMoveEvent* e);
virtual void dropEvent(QDropEvent* e);
virtual void enterEvent(QEvent* arg__1);
virtual bool event(QEvent* e);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
virtual void focusInEvent(QFocusEvent* e);
virtual bool focusNextPrevChild(bool next);
virtual void focusOutEvent(QFocusEvent* e);
virtual int heightForWidth(int arg__1) const;
virtual void hideEvent(QHideEvent* arg__1);
virtual void inputMethodEvent(QInputMethodEvent* arg__1);
virtual QVariant inputMethodQuery(Qt::InputMethodQuery property) const;
virtual void insertFromMimeData(const QMimeData* source);
virtual void keyPressEvent(QKeyEvent* e);
virtual void keyReleaseEvent(QKeyEvent* e);
virtual void languageChange();
virtual void leaveEvent(QEvent* arg__1);
virtual QVariant loadResource(int type, const QUrl& name);
virtual int metric(QPaintDevice::PaintDeviceMetric arg__1) const;
virtual void mouseDoubleClickEvent(QMouseEvent* e);
virtual void mouseMoveEvent(QMouseEvent* e);
virtual void mousePressEvent(QMouseEvent* e);
virtual void mouseReleaseEvent(QMouseEvent* e);
virtual void moveEvent(QMoveEvent* arg__1);
virtual QPaintEngine* paintEngine() const;
virtual void paintEvent(QPaintEvent* e);
virtual void resizeEvent(QResizeEvent* e);
virtual void scrollContentsBy(int dx, int dy);
virtual void showEvent(QShowEvent* arg__1);
virtual void tabletEvent(QTabletEvent* arg__1);
virtual void timerEvent(QTimerEvent* e);
virtual bool viewportEvent(QEvent* arg__1);
virtual void wheelEvent(QWheelEvent* e);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QPlainTextEdit : public QPlainTextEdit
{ public:
inline bool promoted_canInsertFromMimeData(const QMimeData* source) const { return QPlainTextEdit::canInsertFromMimeData(source); }
inline void promoted_changeEvent(QEvent* e) { QPlainTextEdit::changeEvent(e); }
inline void promoted_contextMenuEvent(QContextMenuEvent* e) { QPlainTextEdit::contextMenuEvent(e); }
inline QMimeData* promoted_createMimeDataFromSelection() const { return QPlainTextEdit::createMimeDataFromSelection(); }
inline void promoted_dragEnterEvent(QDragEnterEvent* e) { QPlainTextEdit::dragEnterEvent(e); }
inline void promoted_dragLeaveEvent(QDragLeaveEvent* e) { QPlainTextEdit::dragLeaveEvent(e); }
inline void promoted_dragMoveEvent(QDragMoveEvent* e) { QPlainTextEdit::dragMoveEvent(e); }
inline void promoted_dropEvent(QDropEvent* e) { QPlainTextEdit::dropEvent(e); }
inline bool promoted_event(QEvent* e) { return QPlainTextEdit::event(e); }
inline void promoted_focusInEvent(QFocusEvent* e) { QPlainTextEdit::focusInEvent(e); }
inline bool promoted_focusNextPrevChild(bool next) { return QPlainTextEdit::focusNextPrevChild(next); }
inline void promoted_focusOutEvent(QFocusEvent* e) { QPlainTextEdit::focusOutEvent(e); }
inline void promoted_inputMethodEvent(QInputMethodEvent* arg__1) { QPlainTextEdit::inputMethodEvent(arg__1); }
inline QVariant promoted_inputMethodQuery(Qt::InputMethodQuery property) const { return QPlainTextEdit::inputMethodQuery(property); }
inline void promoted_insertFromMimeData(const QMimeData* source) { QPlainTextEdit::insertFromMimeData(source); }
inline void promoted_keyPressEvent(QKeyEvent* e) { QPlainTextEdit::keyPressEvent(e); }
inline void promoted_keyReleaseEvent(QKeyEvent* e) { QPlainTextEdit::keyReleaseEvent(e); }
inline QVariant promoted_loadResource(int type, const QUrl& name) { return QPlainTextEdit::loadResource(type, name); }
inline void promoted_mouseDoubleClickEvent(QMouseEvent* e) { QPlainTextEdit::mouseDoubleClickEvent(e); }
inline void promoted_mouseMoveEvent(QMouseEvent* e) { QPlainTextEdit::mouseMoveEvent(e); }
inline void promoted_mousePressEvent(QMouseEvent* e) { QPlainTextEdit::mousePressEvent(e); }
inline void promoted_mouseReleaseEvent(QMouseEvent* e) { QPlainTextEdit::mouseReleaseEvent(e); }
inline void promoted_paintEvent(QPaintEvent* e) { QPlainTextEdit::paintEvent(e); }
inline void promoted_resizeEvent(QResizeEvent* e) { QPlainTextEdit::resizeEvent(e); }
inline void promoted_scrollContentsBy(int dx, int dy) { QPlainTextEdit::scrollContentsBy(dx, dy); }
inline void promoted_showEvent(QShowEvent* arg__1) { QPlainTextEdit::showEvent(arg__1); }
inline void promoted_timerEvent(QTimerEvent* e) { QPlainTextEdit::timerEvent(e); }
inline void promoted_wheelEvent(QWheelEvent* e) { QPlainTextEdit::wheelEvent(e); }
};
class PythonQtWrapper_QPlainTextEdit : public QObject
{ Q_OBJECT
public:
public slots:
QPlainTextEdit* new_QPlainTextEdit(QWidget* parent = 0);
QPlainTextEdit* new_QPlainTextEdit(const QString& text, QWidget* parent = 0);
void delete_QPlainTextEdit(QPlainTextEdit* obj) { delete obj; }
bool backgroundVisible(QPlainTextEdit* theWrappedObject) const;
int blockCount(QPlainTextEdit* theWrappedObject) const;
bool canInsertFromMimeData(QPlainTextEdit* theWrappedObject, const QMimeData* source) const;
bool canPaste(QPlainTextEdit* theWrappedObject) const;
bool centerOnScroll(QPlainTextEdit* theWrappedObject) const;
void changeEvent(QPlainTextEdit* theWrappedObject, QEvent* e);
void contextMenuEvent(QPlainTextEdit* theWrappedObject, QContextMenuEvent* e);
QMimeData* createMimeDataFromSelection(QPlainTextEdit* theWrappedObject) const;
QMenu* createStandardContextMenu(QPlainTextEdit* theWrappedObject);
QTextCharFormat currentCharFormat(QPlainTextEdit* theWrappedObject) const;
QTextCursor cursorForPosition(QPlainTextEdit* theWrappedObject, const QPoint& pos) const;
QRect cursorRect(QPlainTextEdit* theWrappedObject) const;
QRect cursorRect(QPlainTextEdit* theWrappedObject, const QTextCursor& cursor) const;
int cursorWidth(QPlainTextEdit* theWrappedObject) const;
QTextDocument* document(QPlainTextEdit* theWrappedObject) const;
QString documentTitle(QPlainTextEdit* theWrappedObject) const;
void dragEnterEvent(QPlainTextEdit* theWrappedObject, QDragEnterEvent* e);
void dragLeaveEvent(QPlainTextEdit* theWrappedObject, QDragLeaveEvent* e);
void dragMoveEvent(QPlainTextEdit* theWrappedObject, QDragMoveEvent* e);
void dropEvent(QPlainTextEdit* theWrappedObject, QDropEvent* e);
void ensureCursorVisible(QPlainTextEdit* theWrappedObject);
bool event(QPlainTextEdit* theWrappedObject, QEvent* e);
QList<QTextEdit::ExtraSelection > extraSelections(QPlainTextEdit* theWrappedObject) const;
bool find(QPlainTextEdit* theWrappedObject, const QString& exp, QTextDocument::FindFlags options = 0);
void focusInEvent(QPlainTextEdit* theWrappedObject, QFocusEvent* e);
bool focusNextPrevChild(QPlainTextEdit* theWrappedObject, bool next);
void focusOutEvent(QPlainTextEdit* theWrappedObject, QFocusEvent* e);
void inputMethodEvent(QPlainTextEdit* theWrappedObject, QInputMethodEvent* arg__1);
QVariant inputMethodQuery(QPlainTextEdit* theWrappedObject, Qt::InputMethodQuery property) const;
void insertFromMimeData(QPlainTextEdit* theWrappedObject, const QMimeData* source);
bool isReadOnly(QPlainTextEdit* theWrappedObject) const;
bool isUndoRedoEnabled(QPlainTextEdit* theWrappedObject) const;
void keyPressEvent(QPlainTextEdit* theWrappedObject, QKeyEvent* e);
void keyReleaseEvent(QPlainTextEdit* theWrappedObject, QKeyEvent* e);
QPlainTextEdit::LineWrapMode lineWrapMode(QPlainTextEdit* theWrappedObject) const;
QVariant loadResource(QPlainTextEdit* theWrappedObject, int type, const QUrl& name);
int maximumBlockCount(QPlainTextEdit* theWrappedObject) const;
void mergeCurrentCharFormat(QPlainTextEdit* theWrappedObject, const QTextCharFormat& modifier);
void mouseDoubleClickEvent(QPlainTextEdit* theWrappedObject, QMouseEvent* e);
void mouseMoveEvent(QPlainTextEdit* theWrappedObject, QMouseEvent* e);
void mousePressEvent(QPlainTextEdit* theWrappedObject, QMouseEvent* e);
void mouseReleaseEvent(QPlainTextEdit* theWrappedObject, QMouseEvent* e);
void moveCursor(QPlainTextEdit* theWrappedObject, QTextCursor::MoveOperation operation, QTextCursor::MoveMode mode = QTextCursor::MoveAnchor);
bool overwriteMode(QPlainTextEdit* theWrappedObject) const;
void paintEvent(QPlainTextEdit* theWrappedObject, QPaintEvent* e);
void print(QPlainTextEdit* theWrappedObject, QPrinter* printer) const;
void resizeEvent(QPlainTextEdit* theWrappedObject, QResizeEvent* e);
void scrollContentsBy(QPlainTextEdit* theWrappedObject, int dx, int dy);
void setBackgroundVisible(QPlainTextEdit* theWrappedObject, bool visible);
void setCenterOnScroll(QPlainTextEdit* theWrappedObject, bool enabled);
void setCurrentCharFormat(QPlainTextEdit* theWrappedObject, const QTextCharFormat& format);
void setCursorWidth(QPlainTextEdit* theWrappedObject, int width);
void setDocument(QPlainTextEdit* theWrappedObject, QTextDocument* document);
void setDocumentTitle(QPlainTextEdit* theWrappedObject, const QString& title);
void setExtraSelections(QPlainTextEdit* theWrappedObject, const QList<QTextEdit::ExtraSelection >& selections);
void setLineWrapMode(QPlainTextEdit* theWrappedObject, QPlainTextEdit::LineWrapMode mode);
void setMaximumBlockCount(QPlainTextEdit* theWrappedObject, int maximum);
void setOverwriteMode(QPlainTextEdit* theWrappedObject, bool overwrite);
void setReadOnly(QPlainTextEdit* theWrappedObject, bool ro);
void setTabChangesFocus(QPlainTextEdit* theWrappedObject, bool b);
void setTabStopWidth(QPlainTextEdit* theWrappedObject, int width);
void setTextCursor(QPlainTextEdit* theWrappedObject, const QTextCursor& cursor);
void setTextInteractionFlags(QPlainTextEdit* theWrappedObject, Qt::TextInteractionFlags flags);
void setUndoRedoEnabled(QPlainTextEdit* theWrappedObject, bool enable);
void setWordWrapMode(QPlainTextEdit* theWrappedObject, QTextOption::WrapMode policy);
void showEvent(QPlainTextEdit* theWrappedObject, QShowEvent* arg__1);
bool tabChangesFocus(QPlainTextEdit* theWrappedObject) const;
int tabStopWidth(QPlainTextEdit* theWrappedObject) const;
QTextCursor textCursor(QPlainTextEdit* theWrappedObject) const;
Qt::TextInteractionFlags textInteractionFlags(QPlainTextEdit* theWrappedObject) const;
void timerEvent(QPlainTextEdit* theWrappedObject, QTimerEvent* e);
QString toPlainText(QPlainTextEdit* theWrappedObject) const;
void wheelEvent(QPlainTextEdit* theWrappedObject, QWheelEvent* e);
QTextOption::WrapMode wordWrapMode(QPlainTextEdit* theWrappedObject) const;
};
class PythonQtShell_QPlastiqueStyle : public QPlastiqueStyle
{
public:
PythonQtShell_QPlastiqueStyle():QPlastiqueStyle(),_wrapper(NULL) {};
virtual void childEvent(QChildEvent* arg__1);
virtual void customEvent(QEvent* arg__1);
virtual void drawComplexControl(QStyle::ComplexControl control, const QStyleOptionComplex* option, QPainter* painter, const QWidget* widget) const;
virtual void drawControl(QStyle::ControlElement element, const QStyleOption* option, QPainter* painter, const QWidget* widget) const;
virtual void drawItemPixmap(QPainter* painter, const QRect& rect, int alignment, const QPixmap& pixmap) const;
virtual void drawItemText(QPainter* painter, const QRect& rect, int flags, const QPalette& pal, bool enabled, const QString& text, QPalette::ColorRole textRole) const;
virtual void drawPrimitive(QStyle::PrimitiveElement element, const QStyleOption* option, QPainter* painter, const QWidget* widget = 0) const;
virtual bool event(QEvent* arg__1);
virtual bool eventFilter(QObject* watched, QEvent* event);
virtual QPixmap generatedIconPixmap(QIcon::Mode iconMode, const QPixmap& pixmap, const QStyleOption* opt) const;
virtual QStyle::SubControl hitTestComplexControl(QStyle::ComplexControl control, const QStyleOptionComplex* option, const QPoint& pos, const QWidget* widget = 0) const;
virtual QRect itemPixmapRect(const QRect& r, int flags, const QPixmap& pixmap) const;
virtual int pixelMetric(QStyle::PixelMetric metric, const QStyleOption* option = 0, const QWidget* widget = 0) const;
virtual void polish(QApplication* app);
virtual void polish(QPalette& pal);
virtual void polish(QWidget* widget);
virtual QSize sizeFromContents(QStyle::ContentsType type, const QStyleOption* option, const QSize& size, const QWidget* widget) const;
virtual QPalette standardPalette() const;
virtual QPixmap standardPixmap(QStyle::StandardPixmap standardPixmap, const QStyleOption* opt, const QWidget* widget) const;
virtual int styleHint(QStyle::StyleHint hint, const QStyleOption* option = 0, const QWidget* widget = 0, QStyleHintReturn* returnData = 0) const;
virtual QRect subControlRect(QStyle::ComplexControl cc, const QStyleOptionComplex* opt, QStyle::SubControl sc, const QWidget* widget) const;
virtual QRect subElementRect(QStyle::SubElement element, const QStyleOption* option, const QWidget* widget) const;
virtual void timerEvent(QTimerEvent* event);
virtual void unpolish(QApplication* app);
virtual void unpolish(QWidget* widget);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QPlastiqueStyle : public QPlastiqueStyle
{ public:
inline void promoted_drawComplexControl(QStyle::ComplexControl control, const QStyleOptionComplex* option, QPainter* painter, const QWidget* widget) const { QPlastiqueStyle::drawComplexControl(control, option, painter, widget); }
inline void promoted_drawControl(QStyle::ControlElement element, const QStyleOption* option, QPainter* painter, const QWidget* widget) const { QPlastiqueStyle::drawControl(element, option, painter, widget); }
inline void promoted_drawPrimitive(QStyle::PrimitiveElement element, const QStyleOption* option, QPainter* painter, const QWidget* widget = 0) const { QPlastiqueStyle::drawPrimitive(element, option, painter, widget); }
inline bool promoted_eventFilter(QObject* watched, QEvent* event) { return QPlastiqueStyle::eventFilter(watched, event); }
inline QStyle::SubControl promoted_hitTestComplexControl(QStyle::ComplexControl control, const QStyleOptionComplex* option, const QPoint& pos, const QWidget* widget = 0) const { return QPlastiqueStyle::hitTestComplexControl(control, option, pos, widget); }
inline int promoted_pixelMetric(QStyle::PixelMetric metric, const QStyleOption* option = 0, const QWidget* widget = 0) const { return QPlastiqueStyle::pixelMetric(metric, option, widget); }
inline void promoted_polish(QApplication* app) { QPlastiqueStyle::polish(app); }
inline void promoted_polish(QPalette& pal) { QPlastiqueStyle::polish(pal); }
inline void promoted_polish(QWidget* widget) { QPlastiqueStyle::polish(widget); }
inline QSize promoted_sizeFromContents(QStyle::ContentsType type, const QStyleOption* option, const QSize& size, const QWidget* widget) const { return QPlastiqueStyle::sizeFromContents(type, option, size, widget); }
inline QPalette promoted_standardPalette() const { return QPlastiqueStyle::standardPalette(); }
inline int promoted_styleHint(QStyle::StyleHint hint, const QStyleOption* option = 0, const QWidget* widget = 0, QStyleHintReturn* returnData = 0) const { return QPlastiqueStyle::styleHint(hint, option, widget, returnData); }
inline QRect promoted_subControlRect(QStyle::ComplexControl cc, const QStyleOptionComplex* opt, QStyle::SubControl sc, const QWidget* widget) const { return QPlastiqueStyle::subControlRect(cc, opt, sc, widget); }
inline QRect promoted_subElementRect(QStyle::SubElement element, const QStyleOption* option, const QWidget* widget) const { return QPlastiqueStyle::subElementRect(element, option, widget); }
inline void promoted_timerEvent(QTimerEvent* event) { QPlastiqueStyle::timerEvent(event); }
inline void promoted_unpolish(QApplication* app) { QPlastiqueStyle::unpolish(app); }
inline void promoted_unpolish(QWidget* widget) { QPlastiqueStyle::unpolish(widget); }
};
class PythonQtWrapper_QPlastiqueStyle : public QObject
{ Q_OBJECT
public:
public slots:
QPlastiqueStyle* new_QPlastiqueStyle();
void delete_QPlastiqueStyle(QPlastiqueStyle* obj) { delete obj; }
void drawComplexControl(QPlastiqueStyle* theWrappedObject, QStyle::ComplexControl control, const QStyleOptionComplex* option, QPainter* painter, const QWidget* widget) const;
void drawControl(QPlastiqueStyle* theWrappedObject, QStyle::ControlElement element, const QStyleOption* option, QPainter* painter, const QWidget* widget) const;
void drawPrimitive(QPlastiqueStyle* theWrappedObject, QStyle::PrimitiveElement element, const QStyleOption* option, QPainter* painter, const QWidget* widget = 0) const;
bool eventFilter(QPlastiqueStyle* theWrappedObject, QObject* watched, QEvent* event);
QStyle::SubControl hitTestComplexControl(QPlastiqueStyle* theWrappedObject, QStyle::ComplexControl control, const QStyleOptionComplex* option, const QPoint& pos, const QWidget* widget = 0) const;
int pixelMetric(QPlastiqueStyle* theWrappedObject, QStyle::PixelMetric metric, const QStyleOption* option = 0, const QWidget* widget = 0) const;
void polish(QPlastiqueStyle* theWrappedObject, QApplication* app);
void polish(QPlastiqueStyle* theWrappedObject, QPalette& pal);
void polish(QPlastiqueStyle* theWrappedObject, QWidget* widget);
QSize sizeFromContents(QPlastiqueStyle* theWrappedObject, QStyle::ContentsType type, const QStyleOption* option, const QSize& size, const QWidget* widget) const;
QPalette standardPalette(QPlastiqueStyle* theWrappedObject) const;
int styleHint(QPlastiqueStyle* theWrappedObject, QStyle::StyleHint hint, const QStyleOption* option = 0, const QWidget* widget = 0, QStyleHintReturn* returnData = 0) const;
QRect subControlRect(QPlastiqueStyle* theWrappedObject, QStyle::ComplexControl cc, const QStyleOptionComplex* opt, QStyle::SubControl sc, const QWidget* widget) const;
QRect subElementRect(QPlastiqueStyle* theWrappedObject, QStyle::SubElement element, const QStyleOption* option, const QWidget* widget) const;
void timerEvent(QPlastiqueStyle* theWrappedObject, QTimerEvent* event);
void unpolish(QPlastiqueStyle* theWrappedObject, QApplication* app);
void unpolish(QPlastiqueStyle* theWrappedObject, QWidget* widget);
};
class PythonQtWrapper_QPolygonF : public QObject
{ Q_OBJECT
public:
public slots:
QPolygonF* new_QPolygonF();
QPolygonF* new_QPolygonF(const QPolygon& a);
QPolygonF* new_QPolygonF(const QPolygonF& a);
QPolygonF* new_QPolygonF(const QRectF& r);
QPolygonF* new_QPolygonF(const QVector<QPointF >& v);
QPolygonF* new_QPolygonF(int size);
void delete_QPolygonF(QPolygonF* obj) { delete obj; }
void append(QPolygonF* theWrappedObject, const QPointF& t);
const QPointF* at(QPolygonF* theWrappedObject, int i) const;
QRectF boundingRect(QPolygonF* theWrappedObject) const;
int capacity(QPolygonF* theWrappedObject) const;
void clear(QPolygonF* theWrappedObject);
bool contains(QPolygonF* theWrappedObject, const QPointF& t) const;
bool containsPoint(QPolygonF* theWrappedObject, const QPointF& pt, Qt::FillRule fillRule) const;
int count(QPolygonF* theWrappedObject) const;
int count(QPolygonF* theWrappedObject, const QPointF& t) const;
bool empty(QPolygonF* theWrappedObject) const;
bool endsWith(QPolygonF* theWrappedObject, const QPointF& t) const;
QVector<QPointF >* fill(QPolygonF* theWrappedObject, const QPointF& t, int size);
const QPointF* first(QPolygonF* theWrappedObject) const;
QVector<QPointF > static_QPolygonF_fromList(const QList<QPointF >& list);
int indexOf(QPolygonF* theWrappedObject, const QPointF& t, int from) const;
QPolygonF intersected(QPolygonF* theWrappedObject, const QPolygonF& r) const;
bool isClosed(QPolygonF* theWrappedObject) const;
bool isEmpty(QPolygonF* theWrappedObject) const;
const QPointF* last(QPolygonF* theWrappedObject) const;
int lastIndexOf(QPolygonF* theWrappedObject, const QPointF& t, int from) const;
QVector<QPointF > mid(QPolygonF* theWrappedObject, int pos, int length) const;
bool __ne__(QPolygonF* theWrappedObject, const QVector<QPointF >& v) const;
QPolygonF __mul__(QPolygonF* theWrappedObject, const QMatrix& m);
QPolygonF __mul__(QPolygonF* theWrappedObject, const QTransform& m);
void writeTo(QPolygonF* theWrappedObject, QDataStream& stream);
bool __eq__(QPolygonF* theWrappedObject, const QVector<QPointF >& v) const;
void readFrom(QPolygonF* theWrappedObject, QDataStream& stream);
void pop_back(QPolygonF* theWrappedObject);
void pop_front(QPolygonF* theWrappedObject);
void prepend(QPolygonF* theWrappedObject, const QPointF& t);
void push_back(QPolygonF* theWrappedObject, const QPointF& t);
void push_front(QPolygonF* theWrappedObject, const QPointF& t);
void remove(QPolygonF* theWrappedObject, int i);
void remove(QPolygonF* theWrappedObject, int i, int n);
void replace(QPolygonF* theWrappedObject, int i, const QPointF& t);
void reserve(QPolygonF* theWrappedObject, int size);
void resize(QPolygonF* theWrappedObject, int size);
void setSharable(QPolygonF* theWrappedObject, bool sharable);
int size(QPolygonF* theWrappedObject) const;
void squeeze(QPolygonF* theWrappedObject);
bool startsWith(QPolygonF* theWrappedObject, const QPointF& t) const;
QPolygonF subtracted(QPolygonF* theWrappedObject, const QPolygonF& r) const;
QList<QPointF > toList(QPolygonF* theWrappedObject) const;
QPolygon toPolygon(QPolygonF* theWrappedObject) const;
void translate(QPolygonF* theWrappedObject, const QPointF& offset);
void translate(QPolygonF* theWrappedObject, qreal dx, qreal dy);
QPolygonF translated(QPolygonF* theWrappedObject, const QPointF& offset) const;
QPolygonF translated(QPolygonF* theWrappedObject, qreal dx, qreal dy) const;
QPolygonF united(QPolygonF* theWrappedObject, const QPolygonF& r) const;
QPointF value(QPolygonF* theWrappedObject, int i) const;
QPointF value(QPolygonF* theWrappedObject, int i, const QPointF& defaultValue) const;
QString py_toString(QPolygonF*);
};
|