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
|
#include <PythonQt.h>
#include <QBasicTimer>
#include <QFont>
#include <QFontMetrics>
#include <QIcon>
#include <QLocale>
#include <QObject>
#include <QPalette>
#include <QSize>
#include <QStringList>
#include <QVariant>
#include <qabstractbutton.h>
#include <qabstractitemdelegate.h>
#include <qabstractitemmodel.h>
#include <qabstractitemview.h>
#include <qabstractpagesetupdialog.h>
#include <qabstractprintdialog.h>
#include <qabstractproxymodel.h>
#include <qabstractscrollarea.h>
#include <qabstractslider.h>
#include <qabstractspinbox.h>
#include <qaccessible.h>
#include <qaccessible2.h>
#include <qaccessiblebridge.h>
#include <qaccessibleobject.h>
#include <qaccessibleplugin.h>
#include <qaccessiblewidget.h>
#include <qaction.h>
#include <qactiongroup.h>
#include <qapplication.h>
#include <qbitmap.h>
#include <qboxlayout.h>
#include <qbrush.h>
#include <qbuttongroup.h>
#include <qbytearray.h>
#include <qcdestyle.h>
#include <qclipboard.h>
#include <qcoreapplication.h>
#include <qcoreevent.h>
#include <qcursor.h>
#include <qdatastream.h>
#include <qdesktopwidget.h>
#include <qdialog.h>
#include <qevent.h>
#include <qfont.h>
#include <qgraphicseffect.h>
#include <qgraphicsitem.h>
#include <qgraphicsproxywidget.h>
#include <qgraphicsscene.h>
#include <qgraphicssceneevent.h>
#include <qgraphicstransform.h>
#include <qgraphicswidget.h>
#include <qicon.h>
#include <qinputcontext.h>
#include <qitemselectionmodel.h>
#include <qkeysequence.h>
#include <qlayout.h>
#include <qlayoutitem.h>
#include <qlineedit.h>
#include <qlist.h>
#include <qlocale.h>
#include <qmargins.h>
#include <qmenu.h>
#include <qmimedata.h>
#include <qmotifstyle.h>
#include <qobject.h>
#include <qpaintdevice.h>
#include <qpaintengine.h>
#include <qpainter.h>
#include <qpainterpath.h>
#include <qpalette.h>
#include <qpen.h>
#include <qpixmap.h>
#include <qpoint.h>
#include <qpolygon.h>
#include <qprinter.h>
#include <qrect.h>
#include <qregion.h>
#include <qscrollbar.h>
#include <qsessionmanager.h>
#include <qsize.h>
#include <qsizepolicy.h>
#include <qstringlist.h>
#include <qstyle.h>
#include <qstyleoption.h>
#include <qtransform.h>
#include <qtranslator.h>
#include <qwidget.h>
class PythonQtShell_QAbstractButton : public QAbstractButton
{
public:
PythonQtShell_QAbstractButton(QWidget* parent = 0):QAbstractButton(parent),_wrapper(NULL) {};
~PythonQtShell_QAbstractButton();
virtual void actionEvent(QActionEvent* arg__1);
virtual void changeEvent(QEvent* e);
virtual void checkStateSet();
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* 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 bool hitButton(const QPoint& pos) const;
virtual void inputMethodEvent(QInputMethodEvent* arg__1);
virtual QVariant inputMethodQuery(Qt::InputMethodQuery arg__1) const;
virtual void keyPressEvent(QKeyEvent* e);
virtual void keyReleaseEvent(QKeyEvent* e);
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* e);
virtual void mousePressEvent(QMouseEvent* e);
virtual void mouseReleaseEvent(QMouseEvent* e);
virtual void moveEvent(QMoveEvent* arg__1);
virtual void nextCheckState();
virtual QPaintEngine* paintEngine() const;
virtual void paintEvent(QPaintEvent* e);
virtual void resizeEvent(QResizeEvent* arg__1);
virtual void showEvent(QShowEvent* arg__1);
virtual QSize sizeHint() const;
virtual void tabletEvent(QTabletEvent* arg__1);
virtual void timerEvent(QTimerEvent* e);
virtual void wheelEvent(QWheelEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QAbstractButton : public QAbstractButton
{ public:
inline void promoted_changeEvent(QEvent* e) { QAbstractButton::changeEvent(e); }
inline void promoted_checkStateSet() { QAbstractButton::checkStateSet(); }
inline bool promoted_event(QEvent* e) { return QAbstractButton::event(e); }
inline void promoted_focusInEvent(QFocusEvent* e) { QAbstractButton::focusInEvent(e); }
inline void promoted_focusOutEvent(QFocusEvent* e) { QAbstractButton::focusOutEvent(e); }
inline bool promoted_hitButton(const QPoint& pos) const { return QAbstractButton::hitButton(pos); }
inline void promoted_keyPressEvent(QKeyEvent* e) { QAbstractButton::keyPressEvent(e); }
inline void promoted_keyReleaseEvent(QKeyEvent* e) { QAbstractButton::keyReleaseEvent(e); }
inline void promoted_mouseMoveEvent(QMouseEvent* e) { QAbstractButton::mouseMoveEvent(e); }
inline void promoted_mousePressEvent(QMouseEvent* e) { QAbstractButton::mousePressEvent(e); }
inline void promoted_mouseReleaseEvent(QMouseEvent* e) { QAbstractButton::mouseReleaseEvent(e); }
inline void promoted_nextCheckState() { QAbstractButton::nextCheckState(); }
inline void promoted_timerEvent(QTimerEvent* e) { QAbstractButton::timerEvent(e); }
};
class PythonQtWrapper_QAbstractButton : public QObject
{ Q_OBJECT
public:
public slots:
QAbstractButton* new_QAbstractButton(QWidget* parent = 0);
void delete_QAbstractButton(QAbstractButton* obj) { delete obj; }
bool autoExclusive(QAbstractButton* theWrappedObject) const;
bool autoRepeat(QAbstractButton* theWrappedObject) const;
int autoRepeatDelay(QAbstractButton* theWrappedObject) const;
int autoRepeatInterval(QAbstractButton* theWrappedObject) const;
void changeEvent(QAbstractButton* theWrappedObject, QEvent* e);
void checkStateSet(QAbstractButton* theWrappedObject);
bool event(QAbstractButton* theWrappedObject, QEvent* e);
void focusInEvent(QAbstractButton* theWrappedObject, QFocusEvent* e);
void focusOutEvent(QAbstractButton* theWrappedObject, QFocusEvent* e);
QButtonGroup* group(QAbstractButton* theWrappedObject) const;
bool hitButton(QAbstractButton* theWrappedObject, const QPoint& pos) const;
QIcon icon(QAbstractButton* theWrappedObject) const;
QSize iconSize(QAbstractButton* theWrappedObject) const;
bool isCheckable(QAbstractButton* theWrappedObject) const;
bool isChecked(QAbstractButton* theWrappedObject) const;
bool isDown(QAbstractButton* theWrappedObject) const;
void keyPressEvent(QAbstractButton* theWrappedObject, QKeyEvent* e);
void keyReleaseEvent(QAbstractButton* theWrappedObject, QKeyEvent* e);
void mouseMoveEvent(QAbstractButton* theWrappedObject, QMouseEvent* e);
void mousePressEvent(QAbstractButton* theWrappedObject, QMouseEvent* e);
void mouseReleaseEvent(QAbstractButton* theWrappedObject, QMouseEvent* e);
void nextCheckState(QAbstractButton* theWrappedObject);
void setAutoExclusive(QAbstractButton* theWrappedObject, bool arg__1);
void setAutoRepeat(QAbstractButton* theWrappedObject, bool arg__1);
void setAutoRepeatDelay(QAbstractButton* theWrappedObject, int arg__1);
void setAutoRepeatInterval(QAbstractButton* theWrappedObject, int arg__1);
void setCheckable(QAbstractButton* theWrappedObject, bool arg__1);
void setDown(QAbstractButton* theWrappedObject, bool arg__1);
void setIcon(QAbstractButton* theWrappedObject, const QIcon& icon);
void setShortcut(QAbstractButton* theWrappedObject, const QKeySequence& key);
void setText(QAbstractButton* theWrappedObject, const QString& text);
QKeySequence shortcut(QAbstractButton* theWrappedObject) const;
QString text(QAbstractButton* theWrappedObject) const;
void timerEvent(QAbstractButton* theWrappedObject, QTimerEvent* e);
};
class PythonQtShell_QAbstractGraphicsShapeItem : public QAbstractGraphicsShapeItem
{
public:
PythonQtShell_QAbstractGraphicsShapeItem(QGraphicsItem* parent = 0, QGraphicsScene* scene = 0):QAbstractGraphicsShapeItem(parent, scene),_wrapper(NULL) {};
~PythonQtShell_QAbstractGraphicsShapeItem();
virtual void advance(int phase);
virtual QRectF boundingRect() const;
virtual bool collidesWithItem(const QGraphicsItem* other, Qt::ItemSelectionMode mode) const;
virtual bool collidesWithPath(const QPainterPath& path, Qt::ItemSelectionMode mode) const;
virtual bool contains(const QPointF& point) const;
virtual void contextMenuEvent(QGraphicsSceneContextMenuEvent* event);
virtual void dragEnterEvent(QGraphicsSceneDragDropEvent* event);
virtual void dragLeaveEvent(QGraphicsSceneDragDropEvent* event);
virtual void dragMoveEvent(QGraphicsSceneDragDropEvent* event);
virtual void dropEvent(QGraphicsSceneDragDropEvent* event);
virtual QVariant extension(const QVariant& variant) const;
virtual void focusInEvent(QFocusEvent* event);
virtual void focusOutEvent(QFocusEvent* event);
virtual void hoverEnterEvent(QGraphicsSceneHoverEvent* event);
virtual void hoverLeaveEvent(QGraphicsSceneHoverEvent* event);
virtual void hoverMoveEvent(QGraphicsSceneHoverEvent* event);
virtual void inputMethodEvent(QInputMethodEvent* event);
virtual QVariant inputMethodQuery(Qt::InputMethodQuery query) const;
virtual bool isObscuredBy(const QGraphicsItem* item) const;
virtual QVariant itemChange(QGraphicsItem::GraphicsItemChange change, const QVariant& value);
virtual void keyPressEvent(QKeyEvent* event);
virtual void keyReleaseEvent(QKeyEvent* event);
virtual void mouseDoubleClickEvent(QGraphicsSceneMouseEvent* event);
virtual void mouseMoveEvent(QGraphicsSceneMouseEvent* event);
virtual void mousePressEvent(QGraphicsSceneMouseEvent* event);
virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent* event);
virtual QPainterPath opaqueArea() const;
virtual void paint(QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget* widget);
virtual bool sceneEvent(QEvent* event);
virtual bool sceneEventFilter(QGraphicsItem* watched, QEvent* event);
virtual void setExtension(QGraphicsItem::Extension extension, const QVariant& variant);
virtual QPainterPath shape() const;
virtual bool supportsExtension(QGraphicsItem::Extension extension) const;
virtual int type() const;
virtual void wheelEvent(QGraphicsSceneWheelEvent* event);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QAbstractGraphicsShapeItem : public QAbstractGraphicsShapeItem
{ public:
inline bool promoted_isObscuredBy(const QGraphicsItem* item) const { return QAbstractGraphicsShapeItem::isObscuredBy(item); }
inline QPainterPath promoted_opaqueArea() const { return QAbstractGraphicsShapeItem::opaqueArea(); }
};
class PythonQtWrapper_QAbstractGraphicsShapeItem : public QObject
{ Q_OBJECT
public:
public slots:
QAbstractGraphicsShapeItem* new_QAbstractGraphicsShapeItem(QGraphicsItem* parent = 0, QGraphicsScene* scene = 0);
void delete_QAbstractGraphicsShapeItem(QAbstractGraphicsShapeItem* obj) { delete obj; }
QBrush brush(QAbstractGraphicsShapeItem* theWrappedObject) const;
bool isObscuredBy(QAbstractGraphicsShapeItem* theWrappedObject, const QGraphicsItem* item) const;
QPainterPath opaqueArea(QAbstractGraphicsShapeItem* theWrappedObject) const;
QPen pen(QAbstractGraphicsShapeItem* theWrappedObject) const;
void setBrush(QAbstractGraphicsShapeItem* theWrappedObject, const QBrush& brush);
void setPen(QAbstractGraphicsShapeItem* theWrappedObject, const QPen& pen);
};
class PythonQtShell_QAbstractItemDelegate : public QAbstractItemDelegate
{
public:
PythonQtShell_QAbstractItemDelegate(QObject* parent = 0):QAbstractItemDelegate(parent),_wrapper(NULL) {};
~PythonQtShell_QAbstractItemDelegate();
virtual void childEvent(QChildEvent* arg__1);
virtual QWidget* createEditor(QWidget* parent, const QStyleOptionViewItem& option, const QModelIndex& index) const;
virtual void customEvent(QEvent* arg__1);
virtual bool editorEvent(QEvent* event, QAbstractItemModel* model, const QStyleOptionViewItem& option, const QModelIndex& index);
virtual bool event(QEvent* arg__1);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
virtual void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const;
virtual void setEditorData(QWidget* editor, const QModelIndex& index) const;
virtual void setModelData(QWidget* editor, QAbstractItemModel* model, const QModelIndex& index) const;
virtual QSize sizeHint(const QStyleOptionViewItem& option, const QModelIndex& index) const;
virtual void timerEvent(QTimerEvent* arg__1);
virtual void updateEditorGeometry(QWidget* editor, const QStyleOptionViewItem& option, const QModelIndex& index) const;
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QAbstractItemDelegate : public QAbstractItemDelegate
{ public:
inline QWidget* promoted_createEditor(QWidget* parent, const QStyleOptionViewItem& option, const QModelIndex& index) const { return QAbstractItemDelegate::createEditor(parent, option, index); }
inline bool promoted_editorEvent(QEvent* event, QAbstractItemModel* model, const QStyleOptionViewItem& option, const QModelIndex& index) { return QAbstractItemDelegate::editorEvent(event, model, option, index); }
inline void promoted_setEditorData(QWidget* editor, const QModelIndex& index) const { QAbstractItemDelegate::setEditorData(editor, index); }
inline void promoted_setModelData(QWidget* editor, QAbstractItemModel* model, const QModelIndex& index) const { QAbstractItemDelegate::setModelData(editor, model, index); }
inline void promoted_updateEditorGeometry(QWidget* editor, const QStyleOptionViewItem& option, const QModelIndex& index) const { QAbstractItemDelegate::updateEditorGeometry(editor, option, index); }
};
class PythonQtWrapper_QAbstractItemDelegate : public QObject
{ Q_OBJECT
public:
Q_ENUMS(EndEditHint )
enum EndEditHint{
NoHint = QAbstractItemDelegate::NoHint, EditNextItem = QAbstractItemDelegate::EditNextItem, EditPreviousItem = QAbstractItemDelegate::EditPreviousItem, SubmitModelCache = QAbstractItemDelegate::SubmitModelCache, RevertModelCache = QAbstractItemDelegate::RevertModelCache};
public slots:
QAbstractItemDelegate* new_QAbstractItemDelegate(QObject* parent = 0);
void delete_QAbstractItemDelegate(QAbstractItemDelegate* obj) { delete obj; }
QWidget* createEditor(QAbstractItemDelegate* theWrappedObject, QWidget* parent, const QStyleOptionViewItem& option, const QModelIndex& index) const;
bool editorEvent(QAbstractItemDelegate* theWrappedObject, QEvent* event, QAbstractItemModel* model, const QStyleOptionViewItem& option, const QModelIndex& index);
void setEditorData(QAbstractItemDelegate* theWrappedObject, QWidget* editor, const QModelIndex& index) const;
void setModelData(QAbstractItemDelegate* theWrappedObject, QWidget* editor, QAbstractItemModel* model, const QModelIndex& index) const;
void updateEditorGeometry(QAbstractItemDelegate* theWrappedObject, QWidget* editor, const QStyleOptionViewItem& option, const QModelIndex& index) const;
};
class PythonQtShell_QAbstractItemView : public QAbstractItemView
{
public:
PythonQtShell_QAbstractItemView(QWidget* parent = 0):QAbstractItemView(parent),_wrapper(NULL) {};
~PythonQtShell_QAbstractItemView();
virtual void actionEvent(QActionEvent* arg__1);
virtual void changeEvent(QEvent* arg__1);
virtual void childEvent(QChildEvent* arg__1);
virtual void closeEditor(QWidget* editor, QAbstractItemDelegate::EndEditHint hint);
virtual void closeEvent(QCloseEvent* arg__1);
virtual void commitData(QWidget* editor);
virtual void contextMenuEvent(QContextMenuEvent* arg__1);
virtual void currentChanged(const QModelIndex& current, const QModelIndex& previous);
virtual void customEvent(QEvent* arg__1);
virtual void dataChanged(const QModelIndex& topLeft, const QModelIndex& bottomRight);
virtual int devType() const;
virtual void doItemsLayout();
virtual void dragEnterEvent(QDragEnterEvent* event);
virtual void dragLeaveEvent(QDragLeaveEvent* event);
virtual void dragMoveEvent(QDragMoveEvent* event);
virtual void dropEvent(QDropEvent* event);
virtual bool edit(const QModelIndex& index, QAbstractItemView::EditTrigger trigger, QEvent* event);
virtual void editorDestroyed(QObject* editor);
virtual void enterEvent(QEvent* arg__1);
virtual bool event(QEvent* event);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
virtual void focusInEvent(QFocusEvent* event);
virtual bool focusNextPrevChild(bool next);
virtual void focusOutEvent(QFocusEvent* event);
virtual int heightForWidth(int arg__1) const;
virtual void hideEvent(QHideEvent* arg__1);
virtual int horizontalOffset() const;
virtual void horizontalScrollbarAction(int action);
virtual void horizontalScrollbarValueChanged(int value);
virtual QModelIndex indexAt(const QPoint& point) const;
virtual void inputMethodEvent(QInputMethodEvent* event);
virtual QVariant inputMethodQuery(Qt::InputMethodQuery query) const;
virtual bool isIndexHidden(const QModelIndex& index) const;
virtual void keyPressEvent(QKeyEvent* event);
virtual void keyReleaseEvent(QKeyEvent* arg__1);
virtual void keyboardSearch(const QString& search);
virtual void languageChange();
virtual void leaveEvent(QEvent* arg__1);
virtual int metric(QPaintDevice::PaintDeviceMetric arg__1) const;
virtual void mouseDoubleClickEvent(QMouseEvent* event);
virtual void mouseMoveEvent(QMouseEvent* event);
virtual void mousePressEvent(QMouseEvent* event);
virtual void mouseReleaseEvent(QMouseEvent* event);
virtual QModelIndex moveCursor(QAbstractItemView::CursorAction cursorAction, Qt::KeyboardModifiers modifiers);
virtual void moveEvent(QMoveEvent* arg__1);
virtual QPaintEngine* paintEngine() const;
virtual void paintEvent(QPaintEvent* arg__1);
virtual void reset();
virtual void resizeEvent(QResizeEvent* event);
virtual void rowsAboutToBeRemoved(const QModelIndex& parent, int start, int end);
virtual void rowsInserted(const QModelIndex& parent, int start, int end);
virtual void scrollContentsBy(int dx, int dy);
virtual void scrollTo(const QModelIndex& index, QAbstractItemView::ScrollHint hint = QAbstractItemView::EnsureVisible);
virtual void selectAll();
virtual QList<QModelIndex > selectedIndexes() const;
virtual void selectionChanged(const QItemSelection& selected, const QItemSelection& deselected);
virtual QItemSelectionModel::SelectionFlags selectionCommand(const QModelIndex& index, const QEvent* event = 0) const;
virtual void setModel(QAbstractItemModel* model);
virtual void setRootIndex(const QModelIndex& index);
virtual void setSelection(const QRect& rect, QItemSelectionModel::SelectionFlags command);
virtual void setSelectionModel(QItemSelectionModel* selectionModel);
virtual void showEvent(QShowEvent* arg__1);
virtual int sizeHintForColumn(int column) const;
virtual int sizeHintForRow(int row) const;
virtual void startDrag(Qt::DropActions supportedActions);
virtual void tabletEvent(QTabletEvent* arg__1);
virtual void timerEvent(QTimerEvent* event);
virtual void updateEditorData();
virtual void updateEditorGeometries();
virtual void updateGeometries();
virtual int verticalOffset() const;
virtual void verticalScrollbarAction(int action);
virtual void verticalScrollbarValueChanged(int value);
virtual QStyleOptionViewItem viewOptions() const;
virtual bool viewportEvent(QEvent* event);
virtual QRect visualRect(const QModelIndex& index) const;
virtual QRegion visualRegionForSelection(const QItemSelection& selection) const;
virtual void wheelEvent(QWheelEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QAbstractItemView : public QAbstractItemView
{ public:
inline void promoted_closeEditor(QWidget* editor, QAbstractItemDelegate::EndEditHint hint) { QAbstractItemView::closeEditor(editor, hint); }
inline void promoted_commitData(QWidget* editor) { QAbstractItemView::commitData(editor); }
inline void promoted_currentChanged(const QModelIndex& current, const QModelIndex& previous) { QAbstractItemView::currentChanged(current, previous); }
inline void promoted_dataChanged(const QModelIndex& topLeft, const QModelIndex& bottomRight) { QAbstractItemView::dataChanged(topLeft, bottomRight); }
inline void promoted_doItemsLayout() { QAbstractItemView::doItemsLayout(); }
inline void promoted_dragEnterEvent(QDragEnterEvent* event) { QAbstractItemView::dragEnterEvent(event); }
inline void promoted_dragLeaveEvent(QDragLeaveEvent* event) { QAbstractItemView::dragLeaveEvent(event); }
inline void promoted_dragMoveEvent(QDragMoveEvent* event) { QAbstractItemView::dragMoveEvent(event); }
inline void promoted_dropEvent(QDropEvent* event) { QAbstractItemView::dropEvent(event); }
inline bool promoted_edit(const QModelIndex& index, QAbstractItemView::EditTrigger trigger, QEvent* event) { return QAbstractItemView::edit(index, trigger, event); }
inline void promoted_editorDestroyed(QObject* editor) { QAbstractItemView::editorDestroyed(editor); }
inline bool promoted_event(QEvent* event) { return QAbstractItemView::event(event); }
inline void promoted_focusInEvent(QFocusEvent* event) { QAbstractItemView::focusInEvent(event); }
inline bool promoted_focusNextPrevChild(bool next) { return QAbstractItemView::focusNextPrevChild(next); }
inline void promoted_focusOutEvent(QFocusEvent* event) { QAbstractItemView::focusOutEvent(event); }
inline void promoted_horizontalScrollbarAction(int action) { QAbstractItemView::horizontalScrollbarAction(action); }
inline void promoted_horizontalScrollbarValueChanged(int value) { QAbstractItemView::horizontalScrollbarValueChanged(value); }
inline void promoted_inputMethodEvent(QInputMethodEvent* event) { QAbstractItemView::inputMethodEvent(event); }
inline QVariant promoted_inputMethodQuery(Qt::InputMethodQuery query) const { return QAbstractItemView::inputMethodQuery(query); }
inline void promoted_keyPressEvent(QKeyEvent* event) { QAbstractItemView::keyPressEvent(event); }
inline void promoted_keyboardSearch(const QString& search) { QAbstractItemView::keyboardSearch(search); }
inline void promoted_mouseDoubleClickEvent(QMouseEvent* event) { QAbstractItemView::mouseDoubleClickEvent(event); }
inline void promoted_mouseMoveEvent(QMouseEvent* event) { QAbstractItemView::mouseMoveEvent(event); }
inline void promoted_mousePressEvent(QMouseEvent* event) { QAbstractItemView::mousePressEvent(event); }
inline void promoted_mouseReleaseEvent(QMouseEvent* event) { QAbstractItemView::mouseReleaseEvent(event); }
inline void promoted_reset() { QAbstractItemView::reset(); }
inline void promoted_resizeEvent(QResizeEvent* event) { QAbstractItemView::resizeEvent(event); }
inline void promoted_rowsAboutToBeRemoved(const QModelIndex& parent, int start, int end) { QAbstractItemView::rowsAboutToBeRemoved(parent, start, end); }
inline void promoted_rowsInserted(const QModelIndex& parent, int start, int end) { QAbstractItemView::rowsInserted(parent, start, end); }
inline void promoted_selectAll() { QAbstractItemView::selectAll(); }
inline QList<QModelIndex > promoted_selectedIndexes() const { return QAbstractItemView::selectedIndexes(); }
inline void promoted_selectionChanged(const QItemSelection& selected, const QItemSelection& deselected) { QAbstractItemView::selectionChanged(selected, deselected); }
inline QItemSelectionModel::SelectionFlags promoted_selectionCommand(const QModelIndex& index, const QEvent* event = 0) const { return QAbstractItemView::selectionCommand(index, event); }
inline void promoted_setModel(QAbstractItemModel* model) { QAbstractItemView::setModel(model); }
inline void promoted_setRootIndex(const QModelIndex& index) { QAbstractItemView::setRootIndex(index); }
inline void promoted_setSelectionModel(QItemSelectionModel* selectionModel) { QAbstractItemView::setSelectionModel(selectionModel); }
inline int promoted_sizeHintForColumn(int column) const { return QAbstractItemView::sizeHintForColumn(column); }
inline int promoted_sizeHintForRow(int row) const { return QAbstractItemView::sizeHintForRow(row); }
inline void promoted_startDrag(Qt::DropActions supportedActions) { QAbstractItemView::startDrag(supportedActions); }
inline void promoted_timerEvent(QTimerEvent* event) { QAbstractItemView::timerEvent(event); }
inline void promoted_updateEditorData() { QAbstractItemView::updateEditorData(); }
inline void promoted_updateEditorGeometries() { QAbstractItemView::updateEditorGeometries(); }
inline void promoted_updateGeometries() { QAbstractItemView::updateGeometries(); }
inline void promoted_verticalScrollbarAction(int action) { QAbstractItemView::verticalScrollbarAction(action); }
inline void promoted_verticalScrollbarValueChanged(int value) { QAbstractItemView::verticalScrollbarValueChanged(value); }
inline QStyleOptionViewItem promoted_viewOptions() const { return QAbstractItemView::viewOptions(); }
inline bool promoted_viewportEvent(QEvent* event) { return QAbstractItemView::viewportEvent(event); }
};
class PythonQtWrapper_QAbstractItemView : public QObject
{ Q_OBJECT
public:
Q_ENUMS(EditTrigger )
Q_FLAGS(EditTriggers )
enum EditTrigger{
NoEditTriggers = QAbstractItemView::NoEditTriggers, CurrentChanged = QAbstractItemView::CurrentChanged, DoubleClicked = QAbstractItemView::DoubleClicked, SelectedClicked = QAbstractItemView::SelectedClicked, EditKeyPressed = QAbstractItemView::EditKeyPressed, AnyKeyPressed = QAbstractItemView::AnyKeyPressed, AllEditTriggers = QAbstractItemView::AllEditTriggers};
Q_DECLARE_FLAGS(EditTriggers, EditTrigger)
public slots:
QAbstractItemView* new_QAbstractItemView(QWidget* parent = 0);
void delete_QAbstractItemView(QAbstractItemView* obj) { delete obj; }
bool alternatingRowColors(QAbstractItemView* theWrappedObject) const;
int autoScrollMargin(QAbstractItemView* theWrappedObject) const;
void closeEditor(QAbstractItemView* theWrappedObject, QWidget* editor, QAbstractItemDelegate::EndEditHint hint);
void closePersistentEditor(QAbstractItemView* theWrappedObject, const QModelIndex& index);
void commitData(QAbstractItemView* theWrappedObject, QWidget* editor);
void currentChanged(QAbstractItemView* theWrappedObject, const QModelIndex& current, const QModelIndex& previous);
QModelIndex currentIndex(QAbstractItemView* theWrappedObject) const;
void dataChanged(QAbstractItemView* theWrappedObject, const QModelIndex& topLeft, const QModelIndex& bottomRight);
Qt::DropAction defaultDropAction(QAbstractItemView* theWrappedObject) const;
void doItemsLayout(QAbstractItemView* theWrappedObject);
QAbstractItemView::DragDropMode dragDropMode(QAbstractItemView* theWrappedObject) const;
bool dragDropOverwriteMode(QAbstractItemView* theWrappedObject) const;
bool dragEnabled(QAbstractItemView* theWrappedObject) const;
void dragEnterEvent(QAbstractItemView* theWrappedObject, QDragEnterEvent* event);
void dragLeaveEvent(QAbstractItemView* theWrappedObject, QDragLeaveEvent* event);
void dragMoveEvent(QAbstractItemView* theWrappedObject, QDragMoveEvent* event);
void dropEvent(QAbstractItemView* theWrappedObject, QDropEvent* event);
bool edit(QAbstractItemView* theWrappedObject, const QModelIndex& index, QAbstractItemView::EditTrigger trigger, QEvent* event);
QAbstractItemView::EditTriggers editTriggers(QAbstractItemView* theWrappedObject) const;
void editorDestroyed(QAbstractItemView* theWrappedObject, QObject* editor);
bool event(QAbstractItemView* theWrappedObject, QEvent* event);
void focusInEvent(QAbstractItemView* theWrappedObject, QFocusEvent* event);
bool focusNextPrevChild(QAbstractItemView* theWrappedObject, bool next);
void focusOutEvent(QAbstractItemView* theWrappedObject, QFocusEvent* event);
bool hasAutoScroll(QAbstractItemView* theWrappedObject) const;
QAbstractItemView::ScrollMode horizontalScrollMode(QAbstractItemView* theWrappedObject) const;
void horizontalScrollbarAction(QAbstractItemView* theWrappedObject, int action);
void horizontalScrollbarValueChanged(QAbstractItemView* theWrappedObject, int value);
QSize iconSize(QAbstractItemView* theWrappedObject) const;
QWidget* indexWidget(QAbstractItemView* theWrappedObject, const QModelIndex& index) const;
void inputMethodEvent(QAbstractItemView* theWrappedObject, QInputMethodEvent* event);
QVariant inputMethodQuery(QAbstractItemView* theWrappedObject, Qt::InputMethodQuery query) const;
QAbstractItemDelegate* itemDelegate(QAbstractItemView* theWrappedObject) const;
QAbstractItemDelegate* itemDelegate(QAbstractItemView* theWrappedObject, const QModelIndex& index) const;
QAbstractItemDelegate* itemDelegateForColumn(QAbstractItemView* theWrappedObject, int column) const;
QAbstractItemDelegate* itemDelegateForRow(QAbstractItemView* theWrappedObject, int row) const;
void keyPressEvent(QAbstractItemView* theWrappedObject, QKeyEvent* event);
void keyboardSearch(QAbstractItemView* theWrappedObject, const QString& search);
QAbstractItemModel* model(QAbstractItemView* theWrappedObject) const;
void mouseDoubleClickEvent(QAbstractItemView* theWrappedObject, QMouseEvent* event);
void mouseMoveEvent(QAbstractItemView* theWrappedObject, QMouseEvent* event);
void mousePressEvent(QAbstractItemView* theWrappedObject, QMouseEvent* event);
void mouseReleaseEvent(QAbstractItemView* theWrappedObject, QMouseEvent* event);
void openPersistentEditor(QAbstractItemView* theWrappedObject, const QModelIndex& index);
void reset(QAbstractItemView* theWrappedObject);
void resizeEvent(QAbstractItemView* theWrappedObject, QResizeEvent* event);
QModelIndex rootIndex(QAbstractItemView* theWrappedObject) const;
void rowsAboutToBeRemoved(QAbstractItemView* theWrappedObject, const QModelIndex& parent, int start, int end);
void rowsInserted(QAbstractItemView* theWrappedObject, const QModelIndex& parent, int start, int end);
void selectAll(QAbstractItemView* theWrappedObject);
QList<QModelIndex > selectedIndexes(QAbstractItemView* theWrappedObject) const;
QAbstractItemView::SelectionBehavior selectionBehavior(QAbstractItemView* theWrappedObject) const;
void selectionChanged(QAbstractItemView* theWrappedObject, const QItemSelection& selected, const QItemSelection& deselected);
QItemSelectionModel::SelectionFlags selectionCommand(QAbstractItemView* theWrappedObject, const QModelIndex& index, const QEvent* event = 0) const;
QAbstractItemView::SelectionMode selectionMode(QAbstractItemView* theWrappedObject) const;
QItemSelectionModel* selectionModel(QAbstractItemView* theWrappedObject) const;
void setAlternatingRowColors(QAbstractItemView* theWrappedObject, bool enable);
void setAutoScroll(QAbstractItemView* theWrappedObject, bool enable);
void setAutoScrollMargin(QAbstractItemView* theWrappedObject, int margin);
void setDefaultDropAction(QAbstractItemView* theWrappedObject, Qt::DropAction dropAction);
void setDragDropMode(QAbstractItemView* theWrappedObject, QAbstractItemView::DragDropMode behavior);
void setDragDropOverwriteMode(QAbstractItemView* theWrappedObject, bool overwrite);
void setDragEnabled(QAbstractItemView* theWrappedObject, bool enable);
void setDropIndicatorShown(QAbstractItemView* theWrappedObject, bool enable);
void setEditTriggers(QAbstractItemView* theWrappedObject, QAbstractItemView::EditTriggers triggers);
void setHorizontalScrollMode(QAbstractItemView* theWrappedObject, QAbstractItemView::ScrollMode mode);
void setIconSize(QAbstractItemView* theWrappedObject, const QSize& size);
void setIndexWidget(QAbstractItemView* theWrappedObject, const QModelIndex& index, QWidget* widget);
void setItemDelegate(QAbstractItemView* theWrappedObject, QAbstractItemDelegate* delegate);
void setItemDelegateForColumn(QAbstractItemView* theWrappedObject, int column, QAbstractItemDelegate* delegate);
void setItemDelegateForRow(QAbstractItemView* theWrappedObject, int row, QAbstractItemDelegate* delegate);
void setModel(QAbstractItemView* theWrappedObject, QAbstractItemModel* model);
void setRootIndex(QAbstractItemView* theWrappedObject, const QModelIndex& index);
void setSelectionBehavior(QAbstractItemView* theWrappedObject, QAbstractItemView::SelectionBehavior behavior);
void setSelectionMode(QAbstractItemView* theWrappedObject, QAbstractItemView::SelectionMode mode);
void setSelectionModel(QAbstractItemView* theWrappedObject, QItemSelectionModel* selectionModel);
void setTabKeyNavigation(QAbstractItemView* theWrappedObject, bool enable);
void setTextElideMode(QAbstractItemView* theWrappedObject, Qt::TextElideMode mode);
void setVerticalScrollMode(QAbstractItemView* theWrappedObject, QAbstractItemView::ScrollMode mode);
bool showDropIndicator(QAbstractItemView* theWrappedObject) const;
int sizeHintForColumn(QAbstractItemView* theWrappedObject, int column) const;
QSize sizeHintForIndex(QAbstractItemView* theWrappedObject, const QModelIndex& index) const;
int sizeHintForRow(QAbstractItemView* theWrappedObject, int row) const;
void startDrag(QAbstractItemView* theWrappedObject, Qt::DropActions supportedActions);
bool tabKeyNavigation(QAbstractItemView* theWrappedObject) const;
Qt::TextElideMode textElideMode(QAbstractItemView* theWrappedObject) const;
void timerEvent(QAbstractItemView* theWrappedObject, QTimerEvent* event);
void updateEditorData(QAbstractItemView* theWrappedObject);
void updateEditorGeometries(QAbstractItemView* theWrappedObject);
void updateGeometries(QAbstractItemView* theWrappedObject);
QAbstractItemView::ScrollMode verticalScrollMode(QAbstractItemView* theWrappedObject) const;
void verticalScrollbarAction(QAbstractItemView* theWrappedObject, int action);
void verticalScrollbarValueChanged(QAbstractItemView* theWrappedObject, int value);
QStyleOptionViewItem viewOptions(QAbstractItemView* theWrappedObject) const;
bool viewportEvent(QAbstractItemView* theWrappedObject, QEvent* event);
};
class PythonQtShell_QAbstractPageSetupDialog : public QAbstractPageSetupDialog
{
public:
PythonQtShell_QAbstractPageSetupDialog(QPrinter* printer, QWidget* parent = 0):QAbstractPageSetupDialog(printer, parent),_wrapper(NULL) {};
~PythonQtShell_QAbstractPageSetupDialog();
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_QAbstractPageSetupDialog : public QAbstractPageSetupDialog
{ public:
inline void promoted_done(int result) { QAbstractPageSetupDialog::done(result); }
};
class PythonQtWrapper_QAbstractPageSetupDialog : public QObject
{ Q_OBJECT
public:
public slots:
QAbstractPageSetupDialog* new_QAbstractPageSetupDialog(QPrinter* printer, QWidget* parent = 0);
void delete_QAbstractPageSetupDialog(QAbstractPageSetupDialog* obj) { delete obj; }
void done(QAbstractPageSetupDialog* theWrappedObject, int result);
QPrinter* printer(QAbstractPageSetupDialog* theWrappedObject);
};
class PythonQtShell_QAbstractPrintDialog : public QAbstractPrintDialog
{
public:
PythonQtShell_QAbstractPrintDialog(QPrinter* printer, QWidget* parent = 0):QAbstractPrintDialog(printer, parent),_wrapper(NULL) {};
~PythonQtShell_QAbstractPrintDialog();
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 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* 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 PythonQtWrapper_QAbstractPrintDialog : public QObject
{ Q_OBJECT
public:
Q_ENUMS(PrintRange PrintDialogOption )
Q_FLAGS(PrintDialogOptions )
enum PrintRange{
AllPages = QAbstractPrintDialog::AllPages, Selection = QAbstractPrintDialog::Selection, PageRange = QAbstractPrintDialog::PageRange, CurrentPage = QAbstractPrintDialog::CurrentPage};
enum PrintDialogOption{
None = QAbstractPrintDialog::None, PrintToFile = QAbstractPrintDialog::PrintToFile, PrintSelection = QAbstractPrintDialog::PrintSelection, PrintPageRange = QAbstractPrintDialog::PrintPageRange, PrintShowPageSize = QAbstractPrintDialog::PrintShowPageSize, PrintCollateCopies = QAbstractPrintDialog::PrintCollateCopies, DontUseSheet = QAbstractPrintDialog::DontUseSheet, PrintCurrentPage = QAbstractPrintDialog::PrintCurrentPage};
Q_DECLARE_FLAGS(PrintDialogOptions, PrintDialogOption)
public slots:
QAbstractPrintDialog* new_QAbstractPrintDialog(QPrinter* printer, QWidget* parent = 0);
void delete_QAbstractPrintDialog(QAbstractPrintDialog* obj) { delete obj; }
void addEnabledOption(QAbstractPrintDialog* theWrappedObject, QAbstractPrintDialog::PrintDialogOption option);
QAbstractPrintDialog::PrintDialogOptions enabledOptions(QAbstractPrintDialog* theWrappedObject) const;
int fromPage(QAbstractPrintDialog* theWrappedObject) const;
bool isOptionEnabled(QAbstractPrintDialog* theWrappedObject, QAbstractPrintDialog::PrintDialogOption option) const;
int maxPage(QAbstractPrintDialog* theWrappedObject) const;
int minPage(QAbstractPrintDialog* theWrappedObject) const;
QAbstractPrintDialog::PrintRange printRange(QAbstractPrintDialog* theWrappedObject) const;
QPrinter* printer(QAbstractPrintDialog* theWrappedObject) const;
void setEnabledOptions(QAbstractPrintDialog* theWrappedObject, QAbstractPrintDialog::PrintDialogOptions options);
void setFromTo(QAbstractPrintDialog* theWrappedObject, int fromPage, int toPage);
void setMinMax(QAbstractPrintDialog* theWrappedObject, int min, int max);
void setOptionTabs(QAbstractPrintDialog* theWrappedObject, const QList<QWidget* >& tabs);
void setPrintRange(QAbstractPrintDialog* theWrappedObject, QAbstractPrintDialog::PrintRange range);
int toPage(QAbstractPrintDialog* theWrappedObject) const;
};
class PythonQtShell_QAbstractProxyModel : public QAbstractProxyModel
{
public:
PythonQtShell_QAbstractProxyModel(QObject* parent = 0):QAbstractProxyModel(parent),_wrapper(NULL) {};
~PythonQtShell_QAbstractProxyModel();
virtual QModelIndex buddy(const QModelIndex& index) const;
virtual bool canFetchMore(const QModelIndex& parent) const;
virtual void childEvent(QChildEvent* arg__1);
virtual int columnCount(const QModelIndex& parent) const;
virtual void customEvent(QEvent* arg__1);
virtual QVariant data(const QModelIndex& proxyIndex, int role = Qt::DisplayRole) const;
virtual bool dropMimeData(const QMimeData* data, Qt::DropAction action, int row, int column, const QModelIndex& parent);
virtual bool event(QEvent* arg__1);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
virtual void fetchMore(const QModelIndex& parent);
virtual Qt::ItemFlags flags(const QModelIndex& index) const;
virtual bool hasChildren(const QModelIndex& parent = QModelIndex()) const;
virtual QVariant headerData(int section, Qt::Orientation orientation, int role) const;
virtual QModelIndex index(int row, int column, const QModelIndex& parent) const;
virtual bool insertColumns(int column, int count, const QModelIndex& parent);
virtual bool insertRows(int row, int count, const QModelIndex& parent);
virtual QMap<int , QVariant > itemData(const QModelIndex& index) const;
virtual QModelIndex mapFromSource(const QModelIndex& sourceIndex) const;
virtual QItemSelection mapSelectionFromSource(const QItemSelection& selection) const;
virtual QItemSelection mapSelectionToSource(const QItemSelection& selection) const;
virtual QModelIndex mapToSource(const QModelIndex& proxyIndex) const;
virtual QList<QModelIndex > match(const QModelIndex& start, int role, const QVariant& value, int hits, Qt::MatchFlags flags) const;
virtual QMimeData* mimeData(const QList<QModelIndex >& indexes) const;
virtual QStringList mimeTypes() const;
virtual QModelIndex parent(const QModelIndex& child) const;
virtual bool removeColumns(int column, int count, const QModelIndex& parent);
virtual bool removeRows(int row, int count, const QModelIndex& parent);
virtual void revert();
virtual int rowCount(const QModelIndex& parent) const;
virtual bool setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole);
virtual bool setHeaderData(int section, Qt::Orientation orientation, const QVariant& value, int role = Qt::EditRole);
virtual bool setItemData(const QModelIndex& index, const QMap<int , QVariant >& roles);
virtual void setSourceModel(QAbstractItemModel* sourceModel);
virtual void sort(int column, Qt::SortOrder order = Qt::AscendingOrder);
virtual QSize span(const QModelIndex& index) const;
virtual bool submit();
virtual Qt::DropActions supportedDropActions() const;
virtual void timerEvent(QTimerEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QAbstractProxyModel : public QAbstractProxyModel
{ public:
inline QModelIndex promoted_buddy(const QModelIndex& index) const { return QAbstractProxyModel::buddy(index); }
inline bool promoted_canFetchMore(const QModelIndex& parent) const { return QAbstractProxyModel::canFetchMore(parent); }
inline QVariant promoted_data(const QModelIndex& proxyIndex, int role = Qt::DisplayRole) const { return QAbstractProxyModel::data(proxyIndex, role); }
inline void promoted_fetchMore(const QModelIndex& parent) { QAbstractProxyModel::fetchMore(parent); }
inline Qt::ItemFlags promoted_flags(const QModelIndex& index) const { return QAbstractProxyModel::flags(index); }
inline bool promoted_hasChildren(const QModelIndex& parent = QModelIndex()) const { return QAbstractProxyModel::hasChildren(parent); }
inline QVariant promoted_headerData(int section, Qt::Orientation orientation, int role) const { return QAbstractProxyModel::headerData(section, orientation, role); }
inline QMap<int , QVariant > promoted_itemData(const QModelIndex& index) const { return QAbstractProxyModel::itemData(index); }
inline QItemSelection promoted_mapSelectionFromSource(const QItemSelection& selection) const { return QAbstractProxyModel::mapSelectionFromSource(selection); }
inline QItemSelection promoted_mapSelectionToSource(const QItemSelection& selection) const { return QAbstractProxyModel::mapSelectionToSource(selection); }
inline QMimeData* promoted_mimeData(const QList<QModelIndex >& indexes) const { return QAbstractProxyModel::mimeData(indexes); }
inline QStringList promoted_mimeTypes() const { return QAbstractProxyModel::mimeTypes(); }
inline void promoted_revert() { QAbstractProxyModel::revert(); }
inline bool promoted_setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole) { return QAbstractProxyModel::setData(index, value, role); }
inline bool promoted_setHeaderData(int section, Qt::Orientation orientation, const QVariant& value, int role = Qt::EditRole) { return QAbstractProxyModel::setHeaderData(section, orientation, value, role); }
inline bool promoted_setItemData(const QModelIndex& index, const QMap<int , QVariant >& roles) { return QAbstractProxyModel::setItemData(index, roles); }
inline void promoted_setSourceModel(QAbstractItemModel* sourceModel) { QAbstractProxyModel::setSourceModel(sourceModel); }
inline void promoted_sort(int column, Qt::SortOrder order = Qt::AscendingOrder) { QAbstractProxyModel::sort(column, order); }
inline QSize promoted_span(const QModelIndex& index) const { return QAbstractProxyModel::span(index); }
inline bool promoted_submit() { return QAbstractProxyModel::submit(); }
inline Qt::DropActions promoted_supportedDropActions() const { return QAbstractProxyModel::supportedDropActions(); }
};
class PythonQtWrapper_QAbstractProxyModel : public QObject
{ Q_OBJECT
public:
public slots:
QAbstractProxyModel* new_QAbstractProxyModel(QObject* parent = 0);
void delete_QAbstractProxyModel(QAbstractProxyModel* obj) { delete obj; }
QModelIndex buddy(QAbstractProxyModel* theWrappedObject, const QModelIndex& index) const;
bool canFetchMore(QAbstractProxyModel* theWrappedObject, const QModelIndex& parent) const;
QVariant data(QAbstractProxyModel* theWrappedObject, const QModelIndex& proxyIndex, int role = Qt::DisplayRole) const;
void fetchMore(QAbstractProxyModel* theWrappedObject, const QModelIndex& parent);
Qt::ItemFlags flags(QAbstractProxyModel* theWrappedObject, const QModelIndex& index) const;
bool hasChildren(QAbstractProxyModel* theWrappedObject, const QModelIndex& parent = QModelIndex()) const;
QVariant headerData(QAbstractProxyModel* theWrappedObject, int section, Qt::Orientation orientation, int role) const;
QMap<int , QVariant > itemData(QAbstractProxyModel* theWrappedObject, const QModelIndex& index) const;
QItemSelection mapSelectionFromSource(QAbstractProxyModel* theWrappedObject, const QItemSelection& selection) const;
QItemSelection mapSelectionToSource(QAbstractProxyModel* theWrappedObject, const QItemSelection& selection) const;
QMimeData* mimeData(QAbstractProxyModel* theWrappedObject, const QList<QModelIndex >& indexes) const;
QStringList mimeTypes(QAbstractProxyModel* theWrappedObject) const;
void revert(QAbstractProxyModel* theWrappedObject);
bool setData(QAbstractProxyModel* theWrappedObject, const QModelIndex& index, const QVariant& value, int role = Qt::EditRole);
bool setHeaderData(QAbstractProxyModel* theWrappedObject, int section, Qt::Orientation orientation, const QVariant& value, int role = Qt::EditRole);
bool setItemData(QAbstractProxyModel* theWrappedObject, const QModelIndex& index, const QMap<int , QVariant >& roles);
void setSourceModel(QAbstractProxyModel* theWrappedObject, QAbstractItemModel* sourceModel);
void sort(QAbstractProxyModel* theWrappedObject, int column, Qt::SortOrder order = Qt::AscendingOrder);
QAbstractItemModel* sourceModel(QAbstractProxyModel* theWrappedObject) const;
QSize span(QAbstractProxyModel* theWrappedObject, const QModelIndex& index) const;
bool submit(QAbstractProxyModel* theWrappedObject);
Qt::DropActions supportedDropActions(QAbstractProxyModel* theWrappedObject) const;
};
class PythonQtShell_QAbstractScrollArea : public QAbstractScrollArea
{
public:
PythonQtShell_QAbstractScrollArea(QWidget* parent = 0):QAbstractScrollArea(parent),_wrapper(NULL) {};
~PythonQtShell_QAbstractScrollArea();
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 scrollContentsBy(int dx, int dy);
virtual void showEvent(QShowEvent* arg__1);
virtual void tabletEvent(QTabletEvent* arg__1);
virtual void timerEvent(QTimerEvent* arg__1);
virtual bool viewportEvent(QEvent* arg__1);
virtual void wheelEvent(QWheelEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QAbstractScrollArea : public QAbstractScrollArea
{ public:
inline void promoted_contextMenuEvent(QContextMenuEvent* arg__1) { QAbstractScrollArea::contextMenuEvent(arg__1); }
inline void promoted_dragEnterEvent(QDragEnterEvent* arg__1) { QAbstractScrollArea::dragEnterEvent(arg__1); }
inline void promoted_dragLeaveEvent(QDragLeaveEvent* arg__1) { QAbstractScrollArea::dragLeaveEvent(arg__1); }
inline void promoted_dragMoveEvent(QDragMoveEvent* arg__1) { QAbstractScrollArea::dragMoveEvent(arg__1); }
inline void promoted_dropEvent(QDropEvent* arg__1) { QAbstractScrollArea::dropEvent(arg__1); }
inline bool promoted_event(QEvent* arg__1) { return QAbstractScrollArea::event(arg__1); }
inline void promoted_keyPressEvent(QKeyEvent* arg__1) { QAbstractScrollArea::keyPressEvent(arg__1); }
inline void promoted_mouseDoubleClickEvent(QMouseEvent* arg__1) { QAbstractScrollArea::mouseDoubleClickEvent(arg__1); }
inline void promoted_mouseMoveEvent(QMouseEvent* arg__1) { QAbstractScrollArea::mouseMoveEvent(arg__1); }
inline void promoted_mousePressEvent(QMouseEvent* arg__1) { QAbstractScrollArea::mousePressEvent(arg__1); }
inline void promoted_mouseReleaseEvent(QMouseEvent* arg__1) { QAbstractScrollArea::mouseReleaseEvent(arg__1); }
inline void promoted_paintEvent(QPaintEvent* arg__1) { QAbstractScrollArea::paintEvent(arg__1); }
inline void promoted_resizeEvent(QResizeEvent* arg__1) { QAbstractScrollArea::resizeEvent(arg__1); }
inline void promoted_scrollContentsBy(int dx, int dy) { QAbstractScrollArea::scrollContentsBy(dx, dy); }
inline bool promoted_viewportEvent(QEvent* arg__1) { return QAbstractScrollArea::viewportEvent(arg__1); }
inline void promoted_wheelEvent(QWheelEvent* arg__1) { QAbstractScrollArea::wheelEvent(arg__1); }
};
class PythonQtWrapper_QAbstractScrollArea : public QObject
{ Q_OBJECT
public:
public slots:
QAbstractScrollArea* new_QAbstractScrollArea(QWidget* parent = 0);
void delete_QAbstractScrollArea(QAbstractScrollArea* obj) { delete obj; }
void addScrollBarWidget(QAbstractScrollArea* theWrappedObject, QWidget* widget, Qt::Alignment alignment);
void contextMenuEvent(QAbstractScrollArea* theWrappedObject, QContextMenuEvent* arg__1);
QWidget* cornerWidget(QAbstractScrollArea* theWrappedObject) const;
void dragEnterEvent(QAbstractScrollArea* theWrappedObject, QDragEnterEvent* arg__1);
void dragLeaveEvent(QAbstractScrollArea* theWrappedObject, QDragLeaveEvent* arg__1);
void dragMoveEvent(QAbstractScrollArea* theWrappedObject, QDragMoveEvent* arg__1);
void dropEvent(QAbstractScrollArea* theWrappedObject, QDropEvent* arg__1);
bool event(QAbstractScrollArea* theWrappedObject, QEvent* arg__1);
QScrollBar* horizontalScrollBar(QAbstractScrollArea* theWrappedObject) const;
Qt::ScrollBarPolicy horizontalScrollBarPolicy(QAbstractScrollArea* theWrappedObject) const;
void keyPressEvent(QAbstractScrollArea* theWrappedObject, QKeyEvent* arg__1);
QSize maximumViewportSize(QAbstractScrollArea* theWrappedObject) const;
QSize minimumSizeHint(QAbstractScrollArea* theWrappedObject) const;
void mouseDoubleClickEvent(QAbstractScrollArea* theWrappedObject, QMouseEvent* arg__1);
void mouseMoveEvent(QAbstractScrollArea* theWrappedObject, QMouseEvent* arg__1);
void mousePressEvent(QAbstractScrollArea* theWrappedObject, QMouseEvent* arg__1);
void mouseReleaseEvent(QAbstractScrollArea* theWrappedObject, QMouseEvent* arg__1);
void paintEvent(QAbstractScrollArea* theWrappedObject, QPaintEvent* arg__1);
void resizeEvent(QAbstractScrollArea* theWrappedObject, QResizeEvent* arg__1);
QList<QWidget* > scrollBarWidgets(QAbstractScrollArea* theWrappedObject, Qt::Alignment alignment);
void scrollContentsBy(QAbstractScrollArea* theWrappedObject, int dx, int dy);
void setCornerWidget(QAbstractScrollArea* theWrappedObject, QWidget* widget);
void setHorizontalScrollBar(QAbstractScrollArea* theWrappedObject, QScrollBar* scrollbar);
void setHorizontalScrollBarPolicy(QAbstractScrollArea* theWrappedObject, Qt::ScrollBarPolicy arg__1);
void setVerticalScrollBar(QAbstractScrollArea* theWrappedObject, QScrollBar* scrollbar);
void setVerticalScrollBarPolicy(QAbstractScrollArea* theWrappedObject, Qt::ScrollBarPolicy arg__1);
void setViewport(QAbstractScrollArea* theWrappedObject, QWidget* widget);
QSize sizeHint(QAbstractScrollArea* theWrappedObject) const;
QScrollBar* verticalScrollBar(QAbstractScrollArea* theWrappedObject) const;
Qt::ScrollBarPolicy verticalScrollBarPolicy(QAbstractScrollArea* theWrappedObject) const;
QWidget* viewport(QAbstractScrollArea* theWrappedObject) const;
bool viewportEvent(QAbstractScrollArea* theWrappedObject, QEvent* arg__1);
void wheelEvent(QAbstractScrollArea* theWrappedObject, QWheelEvent* arg__1);
};
class PythonQtShell_QAbstractSlider : public QAbstractSlider
{
public:
PythonQtShell_QAbstractSlider(QWidget* parent = 0):QAbstractSlider(parent),_wrapper(NULL) {};
~PythonQtShell_QAbstractSlider();
virtual void actionEvent(QActionEvent* arg__1);
virtual void changeEvent(QEvent* e);
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* 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* ev);
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 QSize sizeHint() const;
virtual void sliderChange(QAbstractSlider::SliderChange change);
virtual void tabletEvent(QTabletEvent* arg__1);
virtual void timerEvent(QTimerEvent* arg__1);
virtual void wheelEvent(QWheelEvent* e);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QAbstractSlider : public QAbstractSlider
{ public:
inline void promoted_changeEvent(QEvent* e) { QAbstractSlider::changeEvent(e); }
inline bool promoted_event(QEvent* e) { return QAbstractSlider::event(e); }
inline void promoted_keyPressEvent(QKeyEvent* ev) { QAbstractSlider::keyPressEvent(ev); }
inline void promoted_timerEvent(QTimerEvent* arg__1) { QAbstractSlider::timerEvent(arg__1); }
inline void promoted_wheelEvent(QWheelEvent* e) { QAbstractSlider::wheelEvent(e); }
};
class PythonQtWrapper_QAbstractSlider : public QObject
{ Q_OBJECT
public:
Q_ENUMS(SliderAction )
enum SliderAction{
SliderNoAction = QAbstractSlider::SliderNoAction, SliderSingleStepAdd = QAbstractSlider::SliderSingleStepAdd, SliderSingleStepSub = QAbstractSlider::SliderSingleStepSub, SliderPageStepAdd = QAbstractSlider::SliderPageStepAdd, SliderPageStepSub = QAbstractSlider::SliderPageStepSub, SliderToMinimum = QAbstractSlider::SliderToMinimum, SliderToMaximum = QAbstractSlider::SliderToMaximum, SliderMove = QAbstractSlider::SliderMove};
public slots:
QAbstractSlider* new_QAbstractSlider(QWidget* parent = 0);
void delete_QAbstractSlider(QAbstractSlider* obj) { delete obj; }
void changeEvent(QAbstractSlider* theWrappedObject, QEvent* e);
bool event(QAbstractSlider* theWrappedObject, QEvent* e);
bool hasTracking(QAbstractSlider* theWrappedObject) const;
bool invertedAppearance(QAbstractSlider* theWrappedObject) const;
bool invertedControls(QAbstractSlider* theWrappedObject) const;
bool isSliderDown(QAbstractSlider* theWrappedObject) const;
void keyPressEvent(QAbstractSlider* theWrappedObject, QKeyEvent* ev);
int maximum(QAbstractSlider* theWrappedObject) const;
int minimum(QAbstractSlider* theWrappedObject) const;
Qt::Orientation orientation(QAbstractSlider* theWrappedObject) const;
int pageStep(QAbstractSlider* theWrappedObject) const;
void setInvertedAppearance(QAbstractSlider* theWrappedObject, bool arg__1);
void setInvertedControls(QAbstractSlider* theWrappedObject, bool arg__1);
void setMaximum(QAbstractSlider* theWrappedObject, int arg__1);
void setMinimum(QAbstractSlider* theWrappedObject, int arg__1);
void setPageStep(QAbstractSlider* theWrappedObject, int arg__1);
void setRange(QAbstractSlider* theWrappedObject, int min, int max);
void setSingleStep(QAbstractSlider* theWrappedObject, int arg__1);
void setSliderDown(QAbstractSlider* theWrappedObject, bool arg__1);
void setSliderPosition(QAbstractSlider* theWrappedObject, int arg__1);
void setTracking(QAbstractSlider* theWrappedObject, bool enable);
int singleStep(QAbstractSlider* theWrappedObject) const;
int sliderPosition(QAbstractSlider* theWrappedObject) const;
void timerEvent(QAbstractSlider* theWrappedObject, QTimerEvent* arg__1);
void triggerAction(QAbstractSlider* theWrappedObject, QAbstractSlider::SliderAction action);
int value(QAbstractSlider* theWrappedObject) const;
void wheelEvent(QAbstractSlider* theWrappedObject, QWheelEvent* e);
};
class PythonQtShell_QAbstractSpinBox : public QAbstractSpinBox
{
public:
PythonQtShell_QAbstractSpinBox(QWidget* parent = 0):QAbstractSpinBox(parent),_wrapper(NULL) {};
~PythonQtShell_QAbstractSpinBox();
virtual void actionEvent(QActionEvent* arg__1);
virtual void changeEvent(QEvent* event);
virtual void childEvent(QChildEvent* arg__1);
virtual void clear();
virtual void closeEvent(QCloseEvent* event);
virtual void contextMenuEvent(QContextMenuEvent* event);
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* arg__1, QEvent* arg__2);
virtual void fixup(QString& input) const;
virtual void focusInEvent(QFocusEvent* event);
virtual bool focusNextPrevChild(bool next);
virtual void focusOutEvent(QFocusEvent* event);
virtual int heightForWidth(int arg__1) const;
virtual void hideEvent(QHideEvent* event);
virtual void inputMethodEvent(QInputMethodEvent* arg__1);
virtual QVariant inputMethodQuery(Qt::InputMethodQuery arg__1) const;
virtual void keyPressEvent(QKeyEvent* event);
virtual void keyReleaseEvent(QKeyEvent* event);
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* event);
virtual void mousePressEvent(QMouseEvent* event);
virtual void mouseReleaseEvent(QMouseEvent* event);
virtual void moveEvent(QMoveEvent* arg__1);
virtual QPaintEngine* paintEngine() const;
virtual void paintEvent(QPaintEvent* event);
virtual void resizeEvent(QResizeEvent* event);
virtual void showEvent(QShowEvent* event);
virtual void stepBy(int steps);
virtual QAbstractSpinBox::StepEnabled stepEnabled() const;
virtual void tabletEvent(QTabletEvent* arg__1);
virtual void timerEvent(QTimerEvent* event);
virtual QValidator::State validate(QString& input, int& pos) const;
virtual void wheelEvent(QWheelEvent* event);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QAbstractSpinBox : public QAbstractSpinBox
{ public:
inline void promoted_changeEvent(QEvent* event) { QAbstractSpinBox::changeEvent(event); }
inline void promoted_clear() { QAbstractSpinBox::clear(); }
inline void promoted_closeEvent(QCloseEvent* event) { QAbstractSpinBox::closeEvent(event); }
inline void promoted_contextMenuEvent(QContextMenuEvent* event) { QAbstractSpinBox::contextMenuEvent(event); }
inline bool promoted_event(QEvent* event) { return QAbstractSpinBox::event(event); }
inline void promoted_fixup(QString& input) const { QAbstractSpinBox::fixup(input); }
inline void promoted_focusInEvent(QFocusEvent* event) { QAbstractSpinBox::focusInEvent(event); }
inline void promoted_focusOutEvent(QFocusEvent* event) { QAbstractSpinBox::focusOutEvent(event); }
inline void promoted_hideEvent(QHideEvent* event) { QAbstractSpinBox::hideEvent(event); }
inline QVariant promoted_inputMethodQuery(Qt::InputMethodQuery arg__1) const { return QAbstractSpinBox::inputMethodQuery(arg__1); }
inline void promoted_keyPressEvent(QKeyEvent* event) { QAbstractSpinBox::keyPressEvent(event); }
inline void promoted_keyReleaseEvent(QKeyEvent* event) { QAbstractSpinBox::keyReleaseEvent(event); }
inline void promoted_mouseMoveEvent(QMouseEvent* event) { QAbstractSpinBox::mouseMoveEvent(event); }
inline void promoted_mousePressEvent(QMouseEvent* event) { QAbstractSpinBox::mousePressEvent(event); }
inline void promoted_mouseReleaseEvent(QMouseEvent* event) { QAbstractSpinBox::mouseReleaseEvent(event); }
inline void promoted_paintEvent(QPaintEvent* event) { QAbstractSpinBox::paintEvent(event); }
inline void promoted_resizeEvent(QResizeEvent* event) { QAbstractSpinBox::resizeEvent(event); }
inline void promoted_showEvent(QShowEvent* event) { QAbstractSpinBox::showEvent(event); }
inline void promoted_stepBy(int steps) { QAbstractSpinBox::stepBy(steps); }
inline QAbstractSpinBox::StepEnabled promoted_stepEnabled() const { return QAbstractSpinBox::stepEnabled(); }
inline void promoted_timerEvent(QTimerEvent* event) { QAbstractSpinBox::timerEvent(event); }
inline QValidator::State promoted_validate(QString& input, int& pos) const { return QAbstractSpinBox::validate(input, pos); }
inline void promoted_wheelEvent(QWheelEvent* event) { QAbstractSpinBox::wheelEvent(event); }
};
class PythonQtWrapper_QAbstractSpinBox : public QObject
{ Q_OBJECT
public:
Q_ENUMS(StepEnabledFlag )
Q_FLAGS(StepEnabled )
enum StepEnabledFlag{
StepNone = QAbstractSpinBox::StepNone, StepUpEnabled = QAbstractSpinBox::StepUpEnabled, StepDownEnabled = QAbstractSpinBox::StepDownEnabled};
Q_DECLARE_FLAGS(StepEnabled, StepEnabledFlag)
public slots:
QAbstractSpinBox* new_QAbstractSpinBox(QWidget* parent = 0);
void delete_QAbstractSpinBox(QAbstractSpinBox* obj) { delete obj; }
Qt::Alignment alignment(QAbstractSpinBox* theWrappedObject) const;
QAbstractSpinBox::ButtonSymbols buttonSymbols(QAbstractSpinBox* theWrappedObject) const;
void changeEvent(QAbstractSpinBox* theWrappedObject, QEvent* event);
void clear(QAbstractSpinBox* theWrappedObject);
void closeEvent(QAbstractSpinBox* theWrappedObject, QCloseEvent* event);
void contextMenuEvent(QAbstractSpinBox* theWrappedObject, QContextMenuEvent* event);
QAbstractSpinBox::CorrectionMode correctionMode(QAbstractSpinBox* theWrappedObject) const;
bool event(QAbstractSpinBox* theWrappedObject, QEvent* event);
void fixup(QAbstractSpinBox* theWrappedObject, QString& input) const;
void focusInEvent(QAbstractSpinBox* theWrappedObject, QFocusEvent* event);
void focusOutEvent(QAbstractSpinBox* theWrappedObject, QFocusEvent* event);
bool hasAcceptableInput(QAbstractSpinBox* theWrappedObject) const;
bool hasFrame(QAbstractSpinBox* theWrappedObject) const;
void hideEvent(QAbstractSpinBox* theWrappedObject, QHideEvent* event);
QVariant inputMethodQuery(QAbstractSpinBox* theWrappedObject, Qt::InputMethodQuery arg__1) const;
void interpretText(QAbstractSpinBox* theWrappedObject);
bool isAccelerated(QAbstractSpinBox* theWrappedObject) const;
bool isReadOnly(QAbstractSpinBox* theWrappedObject) const;
void keyPressEvent(QAbstractSpinBox* theWrappedObject, QKeyEvent* event);
void keyReleaseEvent(QAbstractSpinBox* theWrappedObject, QKeyEvent* event);
bool keyboardTracking(QAbstractSpinBox* theWrappedObject) const;
QSize minimumSizeHint(QAbstractSpinBox* theWrappedObject) const;
void mouseMoveEvent(QAbstractSpinBox* theWrappedObject, QMouseEvent* event);
void mousePressEvent(QAbstractSpinBox* theWrappedObject, QMouseEvent* event);
void mouseReleaseEvent(QAbstractSpinBox* theWrappedObject, QMouseEvent* event);
void paintEvent(QAbstractSpinBox* theWrappedObject, QPaintEvent* event);
void resizeEvent(QAbstractSpinBox* theWrappedObject, QResizeEvent* event);
void setAccelerated(QAbstractSpinBox* theWrappedObject, bool on);
void setAlignment(QAbstractSpinBox* theWrappedObject, Qt::Alignment flag);
void setButtonSymbols(QAbstractSpinBox* theWrappedObject, QAbstractSpinBox::ButtonSymbols bs);
void setCorrectionMode(QAbstractSpinBox* theWrappedObject, QAbstractSpinBox::CorrectionMode cm);
void setFrame(QAbstractSpinBox* theWrappedObject, bool arg__1);
void setKeyboardTracking(QAbstractSpinBox* theWrappedObject, bool kt);
void setReadOnly(QAbstractSpinBox* theWrappedObject, bool r);
void setSpecialValueText(QAbstractSpinBox* theWrappedObject, const QString& txt);
void setWrapping(QAbstractSpinBox* theWrappedObject, bool w);
void showEvent(QAbstractSpinBox* theWrappedObject, QShowEvent* event);
QSize sizeHint(QAbstractSpinBox* theWrappedObject) const;
QString specialValueText(QAbstractSpinBox* theWrappedObject) const;
void stepBy(QAbstractSpinBox* theWrappedObject, int steps);
QAbstractSpinBox::StepEnabled stepEnabled(QAbstractSpinBox* theWrappedObject) const;
QString text(QAbstractSpinBox* theWrappedObject) const;
void timerEvent(QAbstractSpinBox* theWrappedObject, QTimerEvent* event);
QValidator::State validate(QAbstractSpinBox* theWrappedObject, QString& input, int& pos) const;
void wheelEvent(QAbstractSpinBox* theWrappedObject, QWheelEvent* event);
bool wrapping(QAbstractSpinBox* theWrappedObject) const;
};
class PythonQtShell_QAbstractTableModel : public QAbstractTableModel
{
public:
PythonQtShell_QAbstractTableModel(QObject* parent = 0):QAbstractTableModel(parent),_wrapper(NULL) {};
~PythonQtShell_QAbstractTableModel();
virtual QModelIndex buddy(const QModelIndex& index) const;
virtual bool canFetchMore(const QModelIndex& parent) const;
virtual void childEvent(QChildEvent* arg__1);
virtual int columnCount(const QModelIndex& parent) const;
virtual void customEvent(QEvent* arg__1);
virtual QVariant data(const QModelIndex& index, int role) const;
virtual bool dropMimeData(const QMimeData* data, Qt::DropAction action, int row, int column, const QModelIndex& parent);
virtual bool event(QEvent* arg__1);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
virtual void fetchMore(const QModelIndex& parent);
virtual Qt::ItemFlags flags(const QModelIndex& index) const;
virtual QVariant headerData(int section, Qt::Orientation orientation, int role) const;
virtual QModelIndex index(int row, int column, const QModelIndex& parent = QModelIndex()) const;
virtual bool insertColumns(int column, int count, const QModelIndex& parent);
virtual bool insertRows(int row, int count, const QModelIndex& parent);
virtual QMap<int , QVariant > itemData(const QModelIndex& index) const;
virtual QList<QModelIndex > match(const QModelIndex& start, int role, const QVariant& value, int hits, Qt::MatchFlags flags) const;
virtual QMimeData* mimeData(const QList<QModelIndex >& indexes) const;
virtual QStringList mimeTypes() const;
virtual bool removeColumns(int column, int count, const QModelIndex& parent);
virtual bool removeRows(int row, int count, const QModelIndex& parent);
virtual void revert();
virtual int rowCount(const QModelIndex& parent) const;
virtual bool setData(const QModelIndex& index, const QVariant& value, int role);
virtual bool setHeaderData(int section, Qt::Orientation orientation, const QVariant& value, int role);
virtual bool setItemData(const QModelIndex& index, const QMap<int , QVariant >& roles);
virtual void sort(int column, Qt::SortOrder order);
virtual QSize span(const QModelIndex& index) const;
virtual bool submit();
virtual Qt::DropActions supportedDropActions() const;
virtual void timerEvent(QTimerEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QAbstractTableModel : public QAbstractTableModel
{ public:
inline bool promoted_dropMimeData(const QMimeData* data, Qt::DropAction action, int row, int column, const QModelIndex& parent) { return QAbstractTableModel::dropMimeData(data, action, row, column, parent); }
inline QModelIndex promoted_index(int row, int column, const QModelIndex& parent = QModelIndex()) const { return QAbstractTableModel::index(row, column, parent); }
};
class PythonQtWrapper_QAbstractTableModel : public QObject
{ Q_OBJECT
public:
public slots:
QAbstractTableModel* new_QAbstractTableModel(QObject* parent = 0);
void delete_QAbstractTableModel(QAbstractTableModel* obj) { delete obj; }
bool dropMimeData(QAbstractTableModel* theWrappedObject, const QMimeData* data, Qt::DropAction action, int row, int column, const QModelIndex& parent);
QModelIndex index(QAbstractTableModel* theWrappedObject, int row, int column, const QModelIndex& parent = QModelIndex()) const;
};
class PythonQtShell_QAccessible : public QAccessible
{
public:
PythonQtShell_QAccessible():QAccessible(),_wrapper(NULL) {};
~PythonQtShell_QAccessible();
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QAccessible : public QObject
{ Q_OBJECT
public:
Q_ENUMS(Method Role Action Event RelationFlag StateFlag Text )
Q_FLAGS(Relation State )
enum Method{
ListSupportedMethods = QAccessible::ListSupportedMethods, SetCursorPosition = QAccessible::SetCursorPosition, GetCursorPosition = QAccessible::GetCursorPosition, ForegroundColor = QAccessible::ForegroundColor, BackgroundColor = QAccessible::BackgroundColor};
enum Role{
NoRole = QAccessible::NoRole, TitleBar = QAccessible::TitleBar, MenuBar = QAccessible::MenuBar, ScrollBar = QAccessible::ScrollBar, Grip = QAccessible::Grip, Sound = QAccessible::Sound, Cursor = QAccessible::Cursor, Caret = QAccessible::Caret, AlertMessage = QAccessible::AlertMessage, Window = QAccessible::Window, Client = QAccessible::Client, PopupMenu = QAccessible::PopupMenu, MenuItem = QAccessible::MenuItem, ToolTip = QAccessible::ToolTip, Application = QAccessible::Application, Document = QAccessible::Document, Pane = QAccessible::Pane, Chart = QAccessible::Chart, Dialog = QAccessible::Dialog, Border = QAccessible::Border, Grouping = QAccessible::Grouping, Separator = QAccessible::Separator, ToolBar = QAccessible::ToolBar, StatusBar = QAccessible::StatusBar, Table = QAccessible::Table, ColumnHeader = QAccessible::ColumnHeader, RowHeader = QAccessible::RowHeader, Column = QAccessible::Column, Row = QAccessible::Row, Cell = QAccessible::Cell, Link = QAccessible::Link, HelpBalloon = QAccessible::HelpBalloon, Assistant = QAccessible::Assistant, List = QAccessible::List, ListItem = QAccessible::ListItem, Tree = QAccessible::Tree, TreeItem = QAccessible::TreeItem, PageTab = QAccessible::PageTab, PropertyPage = QAccessible::PropertyPage, Indicator = QAccessible::Indicator, Graphic = QAccessible::Graphic, StaticText = QAccessible::StaticText, EditableText = QAccessible::EditableText, PushButton = QAccessible::PushButton, CheckBox = QAccessible::CheckBox, RadioButton = QAccessible::RadioButton, ComboBox = QAccessible::ComboBox, ProgressBar = QAccessible::ProgressBar, Dial = QAccessible::Dial, HotkeyField = QAccessible::HotkeyField, Slider = QAccessible::Slider, SpinBox = QAccessible::SpinBox, Canvas = QAccessible::Canvas, Animation = QAccessible::Animation, Equation = QAccessible::Equation, ButtonDropDown = QAccessible::ButtonDropDown, ButtonMenu = QAccessible::ButtonMenu, ButtonDropGrid = QAccessible::ButtonDropGrid, Whitespace = QAccessible::Whitespace, PageTabList = QAccessible::PageTabList, Clock = QAccessible::Clock, Splitter = QAccessible::Splitter, LayeredPane = QAccessible::LayeredPane, UserRole = QAccessible::UserRole};
enum Action{
DefaultAction = QAccessible::DefaultAction, Press = QAccessible::Press, FirstStandardAction = QAccessible::FirstStandardAction, SetFocus = QAccessible::SetFocus, Increase = QAccessible::Increase, Decrease = QAccessible::Decrease, Accept = QAccessible::Accept, Cancel = QAccessible::Cancel, Select = QAccessible::Select, ClearSelection = QAccessible::ClearSelection, RemoveSelection = QAccessible::RemoveSelection, ExtendSelection = QAccessible::ExtendSelection, AddToSelection = QAccessible::AddToSelection, LastStandardAction = QAccessible::LastStandardAction};
enum Event{
SoundPlayed = QAccessible::SoundPlayed, Alert = QAccessible::Alert, ForegroundChanged = QAccessible::ForegroundChanged, MenuStart = QAccessible::MenuStart, MenuEnd = QAccessible::MenuEnd, PopupMenuStart = QAccessible::PopupMenuStart, PopupMenuEnd = QAccessible::PopupMenuEnd, ContextHelpStart = QAccessible::ContextHelpStart, ContextHelpEnd = QAccessible::ContextHelpEnd, DragDropStart = QAccessible::DragDropStart, DragDropEnd = QAccessible::DragDropEnd, DialogStart = QAccessible::DialogStart, DialogEnd = QAccessible::DialogEnd, ScrollingStart = QAccessible::ScrollingStart, ScrollingEnd = QAccessible::ScrollingEnd, MenuCommand = QAccessible::MenuCommand, ActionChanged = QAccessible::ActionChanged, ActiveDescendantChanged = QAccessible::ActiveDescendantChanged, AttributeChanged = QAccessible::AttributeChanged, DocumentContentChanged = QAccessible::DocumentContentChanged, DocumentLoadComplete = QAccessible::DocumentLoadComplete, DocumentLoadStopped = QAccessible::DocumentLoadStopped, DocumentReload = QAccessible::DocumentReload, HyperlinkEndIndexChanged = QAccessible::HyperlinkEndIndexChanged, HyperlinkNumberOfAnchorsChanged = QAccessible::HyperlinkNumberOfAnchorsChanged, HyperlinkSelectedLinkChanged = QAccessible::HyperlinkSelectedLinkChanged, HypertextLinkActivated = QAccessible::HypertextLinkActivated, HypertextLinkSelected = QAccessible::HypertextLinkSelected, HyperlinkStartIndexChanged = QAccessible::HyperlinkStartIndexChanged, HypertextChanged = QAccessible::HypertextChanged, HypertextNLinksChanged = QAccessible::HypertextNLinksChanged, ObjectAttributeChanged = QAccessible::ObjectAttributeChanged, PageChanged = QAccessible::PageChanged, SectionChanged = QAccessible::SectionChanged, TableCaptionChanged = QAccessible::TableCaptionChanged, TableColumnDescriptionChanged = QAccessible::TableColumnDescriptionChanged, TableColumnHeaderChanged = QAccessible::TableColumnHeaderChanged, TableModelChanged = QAccessible::TableModelChanged, TableRowDescriptionChanged = QAccessible::TableRowDescriptionChanged, TableRowHeaderChanged = QAccessible::TableRowHeaderChanged, TableSummaryChanged = QAccessible::TableSummaryChanged, TextAttributeChanged = QAccessible::TextAttributeChanged, TextCaretMoved = QAccessible::TextCaretMoved, TextColumnChanged = QAccessible::TextColumnChanged, TextInserted = QAccessible::TextInserted, TextRemoved = QAccessible::TextRemoved, TextUpdated = QAccessible::TextUpdated, TextSelectionChanged = QAccessible::TextSelectionChanged, VisibleDataChanged = QAccessible::VisibleDataChanged, ObjectCreated = QAccessible::ObjectCreated, ObjectDestroyed = QAccessible::ObjectDestroyed, ObjectShow = QAccessible::ObjectShow, ObjectHide = QAccessible::ObjectHide, ObjectReorder = QAccessible::ObjectReorder, Focus = QAccessible::Focus, Selection = QAccessible::Selection, SelectionAdd = QAccessible::SelectionAdd, SelectionRemove = QAccessible::SelectionRemove, SelectionWithin = QAccessible::SelectionWithin, StateChanged = QAccessible::StateChanged, LocationChanged = QAccessible::LocationChanged, NameChanged = QAccessible::NameChanged, DescriptionChanged = QAccessible::DescriptionChanged, ValueChanged = QAccessible::ValueChanged, ParentChanged = QAccessible::ParentChanged, HelpChanged = QAccessible::HelpChanged, DefaultActionChanged = QAccessible::DefaultActionChanged, AcceleratorChanged = QAccessible::AcceleratorChanged};
enum RelationFlag{
Unrelated = QAccessible::Unrelated, Self = QAccessible::Self, Ancestor = QAccessible::Ancestor, Child = QAccessible::Child, Descendent = QAccessible::Descendent, Sibling = QAccessible::Sibling, HierarchyMask = QAccessible::HierarchyMask, Up = QAccessible::Up, Down = QAccessible::Down, Left = QAccessible::Left, Right = QAccessible::Right, Covers = QAccessible::Covers, Covered = QAccessible::Covered, GeometryMask = QAccessible::GeometryMask, FocusChild = QAccessible::FocusChild, Label = QAccessible::Label, Labelled = QAccessible::Labelled, Controller = QAccessible::Controller, Controlled = QAccessible::Controlled, LogicalMask = QAccessible::LogicalMask};
enum StateFlag{
Normal = QAccessible::Normal, Unavailable = QAccessible::Unavailable, Selected = QAccessible::Selected, Focused = QAccessible::Focused, Pressed = QAccessible::Pressed, Checked = QAccessible::Checked, Mixed = QAccessible::Mixed, ReadOnly = QAccessible::ReadOnly, HotTracked = QAccessible::HotTracked, DefaultButton = QAccessible::DefaultButton, Expanded = QAccessible::Expanded, Collapsed = QAccessible::Collapsed, Busy = QAccessible::Busy, Marqueed = QAccessible::Marqueed, Animated = QAccessible::Animated, Invisible = QAccessible::Invisible, Offscreen = QAccessible::Offscreen, Sizeable = QAccessible::Sizeable, Movable = QAccessible::Movable, SelfVoicing = QAccessible::SelfVoicing, Focusable = QAccessible::Focusable, Selectable = QAccessible::Selectable, Linked = QAccessible::Linked, Traversed = QAccessible::Traversed, MultiSelectable = QAccessible::MultiSelectable, ExtSelectable = QAccessible::ExtSelectable, Protected = QAccessible::Protected, HasPopup = QAccessible::HasPopup, Modal = QAccessible::Modal, HasInvokeExtension = QAccessible::HasInvokeExtension};
enum Text{
Name = QAccessible::Name, Description = QAccessible::Description, Value = QAccessible::Value, Help = QAccessible::Help, Accelerator = QAccessible::Accelerator, UserText = QAccessible::UserText};
Q_DECLARE_FLAGS(Relation, RelationFlag)
Q_DECLARE_FLAGS(State, StateFlag)
public slots:
QAccessible* new_QAccessible();
void delete_QAccessible(QAccessible* obj) { delete obj; }
bool static_QAccessible_isActive();
QAccessibleInterface* static_QAccessible_queryAccessibleInterface(QObject* arg__1);
void static_QAccessible_setRootObject(QObject* arg__1);
void static_QAccessible_updateAccessibility(QObject* arg__1, int who, QAccessible::Event reason);
};
class PythonQtShell_QAccessible2Interface : public QAccessible2Interface
{
public:
PythonQtShell_QAccessible2Interface():QAccessible2Interface(),_wrapper(NULL) {};
~PythonQtShell_QAccessible2Interface();
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QAccessible2Interface : public QObject
{ Q_OBJECT
public:
public slots:
QAccessible2Interface* new_QAccessible2Interface();
void delete_QAccessible2Interface(QAccessible2Interface* obj) { delete obj; }
};
class PythonQtShell_QAccessibleBridge : public QAccessibleBridge
{
public:
PythonQtShell_QAccessibleBridge():QAccessibleBridge(),_wrapper(NULL) {};
~PythonQtShell_QAccessibleBridge();
virtual void notifyAccessibilityUpdate(int arg__1, QAccessibleInterface* arg__2, int arg__3);
virtual void setRootObject(QAccessibleInterface* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QAccessibleBridge : public QObject
{ Q_OBJECT
public:
public slots:
QAccessibleBridge* new_QAccessibleBridge();
void delete_QAccessibleBridge(QAccessibleBridge* obj) { delete obj; }
};
class PythonQtWrapper_QAccessibleEvent : public QObject
{ Q_OBJECT
public:
public slots:
QAccessibleEvent* new_QAccessibleEvent(QEvent::Type type, int child);
void delete_QAccessibleEvent(QAccessibleEvent* obj) { delete obj; }
int child(QAccessibleEvent* theWrappedObject) const;
void setValue(QAccessibleEvent* theWrappedObject, const QString& aText);
QString value(QAccessibleEvent* theWrappedObject) const;
};
class PythonQtShell_QAccessibleInterface : public QAccessibleInterface
{
public:
PythonQtShell_QAccessibleInterface():QAccessibleInterface(),_wrapper(NULL) {};
~PythonQtShell_QAccessibleInterface();
virtual QString actionText(int action, QAccessible::Text t, int child) const;
virtual int childAt(int x, int y) const;
virtual int childCount() const;
virtual bool doAction(int action, int child, const QList<QVariant >& params = QVariantList());
virtual int indexOfChild(const QAccessibleInterface* arg__1) const;
virtual bool isValid() const;
virtual int navigate(QAccessible::RelationFlag relation, int index, QAccessibleInterface** iface) const;
virtual QObject* object() const;
virtual QRect rect(int child) const;
virtual QAccessible::Relation relationTo(int child, const QAccessibleInterface* other, int otherChild) const;
virtual QAccessible::Role role(int child) const;
virtual void setText(QAccessible::Text t, int child, const QString& text);
virtual QAccessible::State state(int child) const;
virtual QString text(QAccessible::Text t, int child) const;
virtual int userActionCount(int child) const;
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QAccessibleInterface : public QObject
{ Q_OBJECT
public:
public slots:
QAccessibleInterface* new_QAccessibleInterface();
void delete_QAccessibleInterface(QAccessibleInterface* obj) { delete obj; }
QVariant invokeMethod(QAccessibleInterface* theWrappedObject, QAccessible::Method method, int child = 0, const QList<QVariant >& params = QVariantList());
QSet<QAccessible::Method > supportedMethods(QAccessibleInterface* theWrappedObject);
};
class PythonQtShell_QAccessibleInterfaceEx : public QAccessibleInterfaceEx
{
public:
PythonQtShell_QAccessibleInterfaceEx():QAccessibleInterfaceEx(),_wrapper(NULL) {};
~PythonQtShell_QAccessibleInterfaceEx();
virtual QString actionText(int action, QAccessible::Text t, int child) const;
virtual int childAt(int x, int y) const;
virtual int childCount() const;
virtual bool doAction(int action, int child, const QList<QVariant >& params);
virtual int indexOfChild(const QAccessibleInterface* arg__1) const;
virtual QVariant invokeMethodEx(QAccessible::Method method, int child, const QList<QVariant >& params);
virtual bool isValid() const;
virtual int navigate(QAccessible::RelationFlag relation, int index, QAccessibleInterface** iface) const;
virtual QObject* object() const;
virtual QRect rect(int child) const;
virtual QAccessible::Relation relationTo(int child, const QAccessibleInterface* other, int otherChild) const;
virtual QAccessible::Role role(int child) const;
virtual void setText(QAccessible::Text t, int child, const QString& text);
virtual QAccessible::State state(int child) const;
virtual QString text(QAccessible::Text t, int child) const;
virtual int userActionCount(int child) const;
virtual QVariant virtual_hook(const QVariant& data);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QAccessibleInterfaceEx : public QAccessibleInterfaceEx
{ public:
inline QVariant promoted_virtual_hook(const QVariant& data) { return QAccessibleInterfaceEx::virtual_hook(data); }
};
class PythonQtWrapper_QAccessibleInterfaceEx : public QObject
{ Q_OBJECT
public:
public slots:
QAccessibleInterfaceEx* new_QAccessibleInterfaceEx();
void delete_QAccessibleInterfaceEx(QAccessibleInterfaceEx* obj) { delete obj; }
QVariant virtual_hook(QAccessibleInterfaceEx* theWrappedObject, const QVariant& data);
};
class PythonQtShell_QAccessibleObject : public QAccessibleObject
{
public:
PythonQtShell_QAccessibleObject(QObject* object):QAccessibleObject(object),_wrapper(NULL) {};
~PythonQtShell_QAccessibleObject();
virtual QString actionText(int action, QAccessible::Text t, int child) const;
virtual int childAt(int x, int y) const;
virtual int childCount() const;
virtual bool doAction(int action, int child, const QList<QVariant >& params);
virtual int indexOfChild(const QAccessibleInterface* arg__1) const;
virtual bool isValid() const;
virtual int navigate(QAccessible::RelationFlag relation, int index, QAccessibleInterface** iface) const;
virtual QObject* object() const;
virtual QRect rect(int child) const;
virtual QAccessible::Relation relationTo(int child, const QAccessibleInterface* other, int otherChild) const;
virtual QAccessible::Role role(int child) const;
virtual void setText(QAccessible::Text t, int child, const QString& text);
virtual QAccessible::State state(int child) const;
virtual QString text(QAccessible::Text t, int child) const;
virtual int userActionCount(int child) const;
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QAccessibleObject : public QAccessibleObject
{ public:
inline QString promoted_actionText(int action, QAccessible::Text t, int child) const { return QAccessibleObject::actionText(action, t, child); }
inline bool promoted_doAction(int action, int child, const QList<QVariant >& params) { return QAccessibleObject::doAction(action, child, params); }
inline bool promoted_isValid() const { return QAccessibleObject::isValid(); }
inline QObject* promoted_object() const { return QAccessibleObject::object(); }
inline QRect promoted_rect(int child) const { return QAccessibleObject::rect(child); }
inline void promoted_setText(QAccessible::Text t, int child, const QString& text) { QAccessibleObject::setText(t, child, text); }
inline int promoted_userActionCount(int child) const { return QAccessibleObject::userActionCount(child); }
};
class PythonQtWrapper_QAccessibleObject : public QObject
{ Q_OBJECT
public:
public slots:
QAccessibleObject* new_QAccessibleObject(QObject* object);
QString actionText(QAccessibleObject* theWrappedObject, int action, QAccessible::Text t, int child) const;
bool doAction(QAccessibleObject* theWrappedObject, int action, int child, const QList<QVariant >& params);
bool isValid(QAccessibleObject* theWrappedObject) const;
QObject* object(QAccessibleObject* theWrappedObject) const;
QRect rect(QAccessibleObject* theWrappedObject, int child) const;
void setText(QAccessibleObject* theWrappedObject, QAccessible::Text t, int child, const QString& text);
int userActionCount(QAccessibleObject* theWrappedObject, int child) const;
};
class PythonQtShell_QAccessibleObjectEx : public QAccessibleObjectEx
{
public:
PythonQtShell_QAccessibleObjectEx(QObject* object):QAccessibleObjectEx(object),_wrapper(NULL) {};
~PythonQtShell_QAccessibleObjectEx();
virtual QString actionText(int action, QAccessible::Text t, int child) const;
virtual int childAt(int x, int y) const;
virtual int childCount() const;
virtual bool doAction(int action, int child, const QList<QVariant >& params);
virtual int indexOfChild(const QAccessibleInterface* arg__1) const;
virtual QVariant invokeMethodEx(QAccessible::Method method, int child, const QList<QVariant >& params);
virtual bool isValid() const;
virtual int navigate(QAccessible::RelationFlag relation, int index, QAccessibleInterface** iface) const;
virtual QObject* object() const;
virtual QRect rect(int child) const;
virtual QAccessible::Relation relationTo(int child, const QAccessibleInterface* other, int otherChild) const;
virtual QAccessible::Role role(int child) const;
virtual void setText(QAccessible::Text t, int child, const QString& text);
virtual QAccessible::State state(int child) const;
virtual QString text(QAccessible::Text t, int child) const;
virtual int userActionCount(int child) const;
virtual QVariant virtual_hook(const QVariant& data);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QAccessibleObjectEx : public QAccessibleObjectEx
{ public:
inline QString promoted_actionText(int action, QAccessible::Text t, int child) const { return QAccessibleObjectEx::actionText(action, t, child); }
inline bool promoted_doAction(int action, int child, const QList<QVariant >& params) { return QAccessibleObjectEx::doAction(action, child, params); }
inline bool promoted_isValid() const { return QAccessibleObjectEx::isValid(); }
inline QObject* promoted_object() const { return QAccessibleObjectEx::object(); }
inline QRect promoted_rect(int child) const { return QAccessibleObjectEx::rect(child); }
inline void promoted_setText(QAccessible::Text t, int child, const QString& text) { QAccessibleObjectEx::setText(t, child, text); }
inline int promoted_userActionCount(int child) const { return QAccessibleObjectEx::userActionCount(child); }
};
class PythonQtWrapper_QAccessibleObjectEx : public QObject
{ Q_OBJECT
public:
public slots:
QAccessibleObjectEx* new_QAccessibleObjectEx(QObject* object);
QString actionText(QAccessibleObjectEx* theWrappedObject, int action, QAccessible::Text t, int child) const;
bool doAction(QAccessibleObjectEx* theWrappedObject, int action, int child, const QList<QVariant >& params);
bool isValid(QAccessibleObjectEx* theWrappedObject) const;
QObject* object(QAccessibleObjectEx* theWrappedObject) const;
QRect rect(QAccessibleObjectEx* theWrappedObject, int child) const;
void setText(QAccessibleObjectEx* theWrappedObject, QAccessible::Text t, int child, const QString& text);
int userActionCount(QAccessibleObjectEx* theWrappedObject, int child) const;
};
class PythonQtShell_QAccessiblePlugin : public QAccessiblePlugin
{
public:
PythonQtShell_QAccessiblePlugin(QObject* parent = 0):QAccessiblePlugin(parent),_wrapper(NULL) {};
~PythonQtShell_QAccessiblePlugin();
virtual void childEvent(QChildEvent* arg__1);
virtual QAccessibleInterface* create(const QString& key, QObject* object);
virtual void customEvent(QEvent* arg__1);
virtual bool event(QEvent* arg__1);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
virtual QStringList keys() const;
virtual void timerEvent(QTimerEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QAccessiblePlugin : public QObject
{ Q_OBJECT
public:
public slots:
QAccessiblePlugin* new_QAccessiblePlugin(QObject* parent = 0);
void delete_QAccessiblePlugin(QAccessiblePlugin* obj) { delete obj; }
};
class PythonQtShell_QAccessibleTableInterface : public QAccessibleTableInterface
{
public:
PythonQtShell_QAccessibleTableInterface():QAccessibleTableInterface(),_wrapper(NULL) {};
~PythonQtShell_QAccessibleTableInterface();
virtual QAccessibleInterface* accessibleAt(int row, int column);
virtual QAccessibleInterface* caption();
virtual void cellAtIndex(int index, int* row, int* column, int* rowSpan, int* columnSpan, bool* isSelected);
virtual int childIndex(int rowIndex, int columnIndex);
virtual int columnCount();
virtual QString columnDescription(int column);
virtual QAccessibleInterface* columnHeader();
virtual int columnIndex(int childIndex);
virtual int columnSpan(int row, int column);
virtual bool isColumnSelected(int column);
virtual bool isRowSelected(int row);
virtual bool isSelected(int row, int column);
virtual int rowCount();
virtual QString rowDescription(int row);
virtual QAccessibleInterface* rowHeader();
virtual int rowIndex(int childIndex);
virtual int rowSpan(int row, int column);
virtual void selectColumn(int column);
virtual void selectRow(int row);
virtual int selectedColumnCount();
virtual int selectedColumns(int maxColumns, QList<int >* columns);
virtual int selectedRowCount();
virtual int selectedRows(int maxRows, QList<int >* rows);
virtual QAccessibleInterface* summary();
virtual void unselectColumn(int column);
virtual void unselectRow(int row);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QAccessibleTableInterface : public QObject
{ Q_OBJECT
public:
public slots:
QAccessibleTableInterface* new_QAccessibleTableInterface();
void delete_QAccessibleTableInterface(QAccessibleTableInterface* obj) { delete obj; }
};
class PythonQtShell_QAccessibleWidget : public QAccessibleWidget
{
public:
PythonQtShell_QAccessibleWidget(QWidget* o, QAccessible::Role r = QAccessible::Client, const QString& name = QString()):QAccessibleWidget(o, r, name),_wrapper(NULL) {};
~PythonQtShell_QAccessibleWidget();
virtual QString actionText(int action, QAccessible::Text t, int child) const;
virtual int childAt(int x, int y) const;
virtual int childCount() const;
virtual bool doAction(int action, int child, const QList<QVariant >& params);
virtual int indexOfChild(const QAccessibleInterface* child) const;
virtual bool isValid() const;
virtual int navigate(QAccessible::RelationFlag rel, int entry, QAccessibleInterface** target) const;
virtual QObject* object() const;
virtual QRect rect(int child) const;
virtual QAccessible::Relation relationTo(int child, const QAccessibleInterface* other, int otherChild) const;
virtual QAccessible::Role role(int child) const;
virtual void setText(QAccessible::Text t, int child, const QString& text);
virtual QAccessible::State state(int child) const;
virtual QString text(QAccessible::Text t, int child) const;
virtual int userActionCount(int child) const;
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QAccessibleWidget : public QAccessibleWidget
{ public:
inline QString promoted_actionText(int action, QAccessible::Text t, int child) const { return QAccessibleWidget::actionText(action, t, child); }
inline int promoted_childAt(int x, int y) const { return QAccessibleWidget::childAt(x, y); }
inline int promoted_childCount() const { return QAccessibleWidget::childCount(); }
inline bool promoted_doAction(int action, int child, const QList<QVariant >& params) { return QAccessibleWidget::doAction(action, child, params); }
inline int promoted_indexOfChild(const QAccessibleInterface* child) const { return QAccessibleWidget::indexOfChild(child); }
inline int promoted_navigate(QAccessible::RelationFlag rel, int entry, QAccessibleInterface** target) const { return QAccessibleWidget::navigate(rel, entry, target); }
inline QRect promoted_rect(int child) const { return QAccessibleWidget::rect(child); }
inline QAccessible::Relation promoted_relationTo(int child, const QAccessibleInterface* other, int otherChild) const { return QAccessibleWidget::relationTo(child, other, otherChild); }
inline QAccessible::Role promoted_role(int child) const { return QAccessibleWidget::role(child); }
inline QAccessible::State promoted_state(int child) const { return QAccessibleWidget::state(child); }
inline QString promoted_text(QAccessible::Text t, int child) const { return QAccessibleWidget::text(t, child); }
inline int promoted_userActionCount(int child) const { return QAccessibleWidget::userActionCount(child); }
};
class PythonQtWrapper_QAccessibleWidget : public QObject
{ Q_OBJECT
public:
public slots:
QAccessibleWidget* new_QAccessibleWidget(QWidget* o, QAccessible::Role r = QAccessible::Client, const QString& name = QString());
QString actionText(QAccessibleWidget* theWrappedObject, int action, QAccessible::Text t, int child) const;
int childAt(QAccessibleWidget* theWrappedObject, int x, int y) const;
int childCount(QAccessibleWidget* theWrappedObject) const;
bool doAction(QAccessibleWidget* theWrappedObject, int action, int child, const QList<QVariant >& params);
int indexOfChild(QAccessibleWidget* theWrappedObject, const QAccessibleInterface* child) const;
int navigate(QAccessibleWidget* theWrappedObject, QAccessible::RelationFlag rel, int entry, QAccessibleInterface** target) const;
QRect rect(QAccessibleWidget* theWrappedObject, int child) const;
QAccessible::Relation relationTo(QAccessibleWidget* theWrappedObject, int child, const QAccessibleInterface* other, int otherChild) const;
QAccessible::Role role(QAccessibleWidget* theWrappedObject, int child) const;
QAccessible::State state(QAccessibleWidget* theWrappedObject, int child) const;
QString text(QAccessibleWidget* theWrappedObject, QAccessible::Text t, int child) const;
int userActionCount(QAccessibleWidget* theWrappedObject, int child) const;
};
class PythonQtShell_QAccessibleWidgetEx : public QAccessibleWidgetEx
{
public:
PythonQtShell_QAccessibleWidgetEx(QWidget* o, QAccessible::Role r = QAccessible::Client, const QString& name = QString()):QAccessibleWidgetEx(o, r, name),_wrapper(NULL) {};
~PythonQtShell_QAccessibleWidgetEx();
virtual QString actionText(int action, QAccessible::Text t, int child) const;
virtual int childAt(int x, int y) const;
virtual int childCount() const;
virtual bool doAction(int action, int child, const QList<QVariant >& params);
virtual int indexOfChild(const QAccessibleInterface* child) const;
virtual QVariant invokeMethodEx(QAccessible::Method method, int child, const QList<QVariant >& params);
virtual bool isValid() const;
virtual int navigate(QAccessible::RelationFlag rel, int entry, QAccessibleInterface** target) const;
virtual QObject* object() const;
virtual QRect rect(int child) const;
virtual QAccessible::Relation relationTo(int child, const QAccessibleInterface* other, int otherChild) const;
virtual QAccessible::Role role(int child) const;
virtual void setText(QAccessible::Text t, int child, const QString& text);
virtual QAccessible::State state(int child) const;
virtual QString text(QAccessible::Text t, int child) const;
virtual int userActionCount(int child) const;
virtual QVariant virtual_hook(const QVariant& data);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QAccessibleWidgetEx : public QAccessibleWidgetEx
{ public:
inline QString promoted_actionText(int action, QAccessible::Text t, int child) const { return QAccessibleWidgetEx::actionText(action, t, child); }
inline int promoted_childAt(int x, int y) const { return QAccessibleWidgetEx::childAt(x, y); }
inline int promoted_childCount() const { return QAccessibleWidgetEx::childCount(); }
inline bool promoted_doAction(int action, int child, const QList<QVariant >& params) { return QAccessibleWidgetEx::doAction(action, child, params); }
inline int promoted_indexOfChild(const QAccessibleInterface* child) const { return QAccessibleWidgetEx::indexOfChild(child); }
inline QVariant promoted_invokeMethodEx(QAccessible::Method method, int child, const QList<QVariant >& params) { return QAccessibleWidgetEx::invokeMethodEx(method, child, params); }
inline int promoted_navigate(QAccessible::RelationFlag rel, int entry, QAccessibleInterface** target) const { return QAccessibleWidgetEx::navigate(rel, entry, target); }
inline QRect promoted_rect(int child) const { return QAccessibleWidgetEx::rect(child); }
inline QAccessible::Relation promoted_relationTo(int child, const QAccessibleInterface* other, int otherChild) const { return QAccessibleWidgetEx::relationTo(child, other, otherChild); }
inline QAccessible::Role promoted_role(int child) const { return QAccessibleWidgetEx::role(child); }
inline QAccessible::State promoted_state(int child) const { return QAccessibleWidgetEx::state(child); }
inline QString promoted_text(QAccessible::Text t, int child) const { return QAccessibleWidgetEx::text(t, child); }
};
class PythonQtWrapper_QAccessibleWidgetEx : public QObject
{ Q_OBJECT
public:
public slots:
QAccessibleWidgetEx* new_QAccessibleWidgetEx(QWidget* o, QAccessible::Role r = QAccessible::Client, const QString& name = QString());
QString actionText(QAccessibleWidgetEx* theWrappedObject, int action, QAccessible::Text t, int child) const;
int childAt(QAccessibleWidgetEx* theWrappedObject, int x, int y) const;
int childCount(QAccessibleWidgetEx* theWrappedObject) const;
bool doAction(QAccessibleWidgetEx* theWrappedObject, int action, int child, const QList<QVariant >& params);
int indexOfChild(QAccessibleWidgetEx* theWrappedObject, const QAccessibleInterface* child) const;
QVariant invokeMethodEx(QAccessibleWidgetEx* theWrappedObject, QAccessible::Method method, int child, const QList<QVariant >& params);
int navigate(QAccessibleWidgetEx* theWrappedObject, QAccessible::RelationFlag rel, int entry, QAccessibleInterface** target) const;
QRect rect(QAccessibleWidgetEx* theWrappedObject, int child) const;
QAccessible::Relation relationTo(QAccessibleWidgetEx* theWrappedObject, int child, const QAccessibleInterface* other, int otherChild) const;
QAccessible::Role role(QAccessibleWidgetEx* theWrappedObject, int child) const;
QAccessible::State state(QAccessibleWidgetEx* theWrappedObject, int child) const;
QString text(QAccessibleWidgetEx* theWrappedObject, QAccessible::Text t, int child) const;
};
class PythonQtShell_QAction : public QAction
{
public:
PythonQtShell_QAction(QObject* parent):QAction(parent),_wrapper(NULL) {};
PythonQtShell_QAction(const QIcon& icon, const QString& text, QObject* parent):QAction(icon, text, parent),_wrapper(NULL) {};
PythonQtShell_QAction(const QString& text, QObject* parent):QAction(text, parent),_wrapper(NULL) {};
~PythonQtShell_QAction();
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 PythonQtPublicPromoter_QAction : public QAction
{ public:
inline bool promoted_event(QEvent* arg__1) { return QAction::event(arg__1); }
};
class PythonQtWrapper_QAction : public QObject
{ Q_OBJECT
public:
Q_ENUMS(ActionEvent )
enum ActionEvent{
Trigger = QAction::Trigger, Hover = QAction::Hover};
public slots:
QAction* new_QAction(QObject* parent);
QAction* new_QAction(const QIcon& icon, const QString& text, QObject* parent);
QAction* new_QAction(const QString& text, QObject* parent);
void delete_QAction(QAction* obj) { delete obj; }
QActionGroup* actionGroup(QAction* theWrappedObject) const;
void activate(QAction* theWrappedObject, QAction::ActionEvent event);
QList<QGraphicsWidget* > associatedGraphicsWidgets(QAction* theWrappedObject) const;
QList<QWidget* > associatedWidgets(QAction* theWrappedObject) const;
bool autoRepeat(QAction* theWrappedObject) const;
QVariant data(QAction* theWrappedObject) const;
bool event(QAction* theWrappedObject, QEvent* arg__1);
QFont font(QAction* theWrappedObject) const;
QIcon icon(QAction* theWrappedObject) const;
QString iconText(QAction* theWrappedObject) const;
bool isCheckable(QAction* theWrappedObject) const;
bool isChecked(QAction* theWrappedObject) const;
bool isEnabled(QAction* theWrappedObject) const;
bool isIconVisibleInMenu(QAction* theWrappedObject) const;
bool isSeparator(QAction* theWrappedObject) const;
bool isVisible(QAction* theWrappedObject) const;
QMenu* menu(QAction* theWrappedObject) const;
QAction::MenuRole menuRole(QAction* theWrappedObject) const;
QWidget* parentWidget(QAction* theWrappedObject) const;
QAction::Priority priority(QAction* theWrappedObject) const;
void setActionGroup(QAction* theWrappedObject, QActionGroup* group);
void setAutoRepeat(QAction* theWrappedObject, bool arg__1);
void setCheckable(QAction* theWrappedObject, bool arg__1);
void setData(QAction* theWrappedObject, const QVariant& var);
void setFont(QAction* theWrappedObject, const QFont& font);
void setIcon(QAction* theWrappedObject, const QIcon& icon);
void setIconText(QAction* theWrappedObject, const QString& text);
void setIconVisibleInMenu(QAction* theWrappedObject, bool visible);
void setMenu(QAction* theWrappedObject, QMenu* menu);
void setMenuRole(QAction* theWrappedObject, QAction::MenuRole menuRole);
void setPriority(QAction* theWrappedObject, QAction::Priority priority);
void setSeparator(QAction* theWrappedObject, bool b);
void setShortcut(QAction* theWrappedObject, const QKeySequence& shortcut);
void setShortcutContext(QAction* theWrappedObject, Qt::ShortcutContext context);
void setShortcuts(QAction* theWrappedObject, QKeySequence::StandardKey arg__1);
void setShortcuts(QAction* theWrappedObject, const QList<QKeySequence >& shortcuts);
void setSoftKeyRole(QAction* theWrappedObject, QAction::SoftKeyRole softKeyRole);
void setStatusTip(QAction* theWrappedObject, const QString& statusTip);
void setText(QAction* theWrappedObject, const QString& text);
void setToolTip(QAction* theWrappedObject, const QString& tip);
void setWhatsThis(QAction* theWrappedObject, const QString& what);
QKeySequence shortcut(QAction* theWrappedObject) const;
Qt::ShortcutContext shortcutContext(QAction* theWrappedObject) const;
QList<QKeySequence > shortcuts(QAction* theWrappedObject) const;
bool showStatusText(QAction* theWrappedObject, QWidget* widget = 0);
QAction::SoftKeyRole softKeyRole(QAction* theWrappedObject) const;
QString statusTip(QAction* theWrappedObject) const;
QString text(QAction* theWrappedObject) const;
QString toolTip(QAction* theWrappedObject) const;
QString whatsThis(QAction* theWrappedObject) const;
};
class PythonQtWrapper_QActionEvent : public QObject
{ Q_OBJECT
public:
public slots:
QActionEvent* new_QActionEvent(int type, QAction* action, QAction* before = 0);
void delete_QActionEvent(QActionEvent* obj) { delete obj; }
QAction* action(QActionEvent* theWrappedObject) const;
QAction* before(QActionEvent* theWrappedObject) const;
};
class PythonQtShell_QActionGroup : public QActionGroup
{
public:
PythonQtShell_QActionGroup(QObject* parent):QActionGroup(parent),_wrapper(NULL) {};
~PythonQtShell_QActionGroup();
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_QActionGroup : public QObject
{ Q_OBJECT
public:
public slots:
QActionGroup* new_QActionGroup(QObject* parent);
void delete_QActionGroup(QActionGroup* obj) { delete obj; }
QList<QAction* > actions(QActionGroup* theWrappedObject) const;
QAction* addAction(QActionGroup* theWrappedObject, QAction* a);
QAction* addAction(QActionGroup* theWrappedObject, const QIcon& icon, const QString& text);
QAction* addAction(QActionGroup* theWrappedObject, const QString& text);
QAction* checkedAction(QActionGroup* theWrappedObject) const;
bool isEnabled(QActionGroup* theWrappedObject) const;
bool isExclusive(QActionGroup* theWrappedObject) const;
bool isVisible(QActionGroup* theWrappedObject) const;
void removeAction(QActionGroup* theWrappedObject, QAction* a);
};
class PythonQtShell_QApplication : public QApplication
{
public:
~PythonQtShell_QApplication();
virtual void childEvent(QChildEvent* arg__1);
virtual void commitData(QSessionManager& sm);
virtual void customEvent(QEvent* arg__1);
virtual bool event(QEvent* arg__1);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
virtual bool notify(QObject* arg__1, QEvent* arg__2);
virtual void saveState(QSessionManager& sm);
virtual void timerEvent(QTimerEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QApplication : public QApplication
{ public:
inline bool promoted_event(QEvent* arg__1) { return QApplication::event(arg__1); }
inline bool promoted_notify(QObject* arg__1, QEvent* arg__2) { return QApplication::notify(arg__1, arg__2); }
};
class PythonQtWrapper_QApplication : public QObject
{ Q_OBJECT
public:
Q_ENUMS(Type ColorSpec )
enum Type{
Tty = QApplication::Tty, GuiClient = QApplication::GuiClient, GuiServer = QApplication::GuiServer};
enum ColorSpec{
NormalColor = QApplication::NormalColor, CustomColor = QApplication::CustomColor, ManyColor = QApplication::ManyColor};
public slots:
void delete_QApplication(QApplication* obj) { delete obj; }
QWidget* static_QApplication_activeModalWidget();
QWidget* static_QApplication_activePopupWidget();
QWidget* static_QApplication_activeWindow();
void static_QApplication_alert(QWidget* widget, int duration = 0);
QList<QWidget* > static_QApplication_allWidgets();
void static_QApplication_beep();
void static_QApplication_changeOverrideCursor(const QCursor& arg__1);
QClipboard* static_QApplication_clipboard();
int static_QApplication_colorSpec();
int static_QApplication_cursorFlashTime();
QDesktopWidget* static_QApplication_desktop();
bool static_QApplication_desktopSettingsAware();
int static_QApplication_doubleClickInterval();
bool event(QApplication* theWrappedObject, QEvent* arg__1);
int static_QApplication_exec();
QWidget* static_QApplication_focusWidget();
QFont static_QApplication_font();
QFont static_QApplication_font(const QWidget* arg__1);
QSize static_QApplication_globalStrut();
QInputContext* inputContext(QApplication* theWrappedObject) const;
bool static_QApplication_isEffectEnabled(Qt::UIEffect arg__1);
bool static_QApplication_isLeftToRight();
bool static_QApplication_isRightToLeft();
bool isSessionRestored(QApplication* theWrappedObject) const;
Qt::LayoutDirection static_QApplication_keyboardInputDirection();
int static_QApplication_keyboardInputInterval();
QLocale static_QApplication_keyboardInputLocale();
Qt::KeyboardModifiers static_QApplication_keyboardModifiers();
Qt::LayoutDirection static_QApplication_layoutDirection();
Qt::MouseButtons static_QApplication_mouseButtons();
bool notify(QApplication* theWrappedObject, QObject* arg__1, QEvent* arg__2);
QCursor* static_QApplication_overrideCursor();
QPalette static_QApplication_palette();
QPalette static_QApplication_palette(const QWidget* arg__1);
Qt::KeyboardModifiers static_QApplication_queryKeyboardModifiers();
bool static_QApplication_quitOnLastWindowClosed();
void static_QApplication_restoreOverrideCursor();
QString sessionId(QApplication* theWrappedObject) const;
QString sessionKey(QApplication* theWrappedObject) const;
void static_QApplication_setActiveWindow(QWidget* act);
void static_QApplication_setColorSpec(int arg__1);
void static_QApplication_setCursorFlashTime(int arg__1);
void static_QApplication_setDesktopSettingsAware(bool arg__1);
void static_QApplication_setDoubleClickInterval(int arg__1);
void static_QApplication_setEffectEnabled(Qt::UIEffect arg__1, bool enable = true);
void static_QApplication_setFont(const QFont& arg__1, const char* className = 0);
void static_QApplication_setGlobalStrut(const QSize& arg__1);
void static_QApplication_setGraphicsSystem(const QString& arg__1);
void setInputContext(QApplication* theWrappedObject, QInputContext* arg__1);
void static_QApplication_setKeyboardInputInterval(int arg__1);
void static_QApplication_setLayoutDirection(Qt::LayoutDirection direction);
void static_QApplication_setOverrideCursor(const QCursor& arg__1);
void static_QApplication_setPalette(const QPalette& arg__1, const char* className = 0);
void static_QApplication_setQuitOnLastWindowClosed(bool quit);
void static_QApplication_setStartDragDistance(int l);
void static_QApplication_setStartDragTime(int ms);
void static_QApplication_setStyle(QStyle* arg__1);
QStyle* static_QApplication_setStyle(const QString& arg__1);
void static_QApplication_setWheelScrollLines(int arg__1);
void static_QApplication_setWindowIcon(const QIcon& icon);
int static_QApplication_startDragDistance();
int static_QApplication_startDragTime();
QStyle* static_QApplication_style();
QString styleSheet(QApplication* theWrappedObject) const;
void static_QApplication_syncX();
QWidget* static_QApplication_topLevelAt(const QPoint& p);
QWidget* static_QApplication_topLevelAt(int x, int y);
QList<QWidget* > static_QApplication_topLevelWidgets();
QApplication::Type static_QApplication_type();
int static_QApplication_wheelScrollLines();
QWidget* static_QApplication_widgetAt(const QPoint& p);
QWidget* static_QApplication_widgetAt(int x, int y);
QIcon static_QApplication_windowIcon();
};
class PythonQtShell_QBoxLayout : public QBoxLayout
{
public:
PythonQtShell_QBoxLayout(QBoxLayout::Direction arg__1, QWidget* parent = 0):QBoxLayout(arg__1, parent),_wrapper(NULL) {};
~PythonQtShell_QBoxLayout();
virtual void addItem(QLayoutItem* arg__1);
virtual void childEvent(QChildEvent* e);
virtual int count() const;
virtual void customEvent(QEvent* arg__1);
virtual bool event(QEvent* arg__1);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
virtual Qt::Orientations expandingDirections() const;
virtual QRect geometry() const;
virtual int indexOf(QWidget* arg__1) const;
virtual void invalidate();
virtual bool isEmpty() const;
virtual QLayoutItem* itemAt(int arg__1) const;
virtual QLayout* layout();
virtual QSize maximumSize() const;
virtual QSize minimumSize() const;
virtual void setGeometry(const QRect& arg__1);
virtual QLayoutItem* takeAt(int arg__1);
virtual void timerEvent(QTimerEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QBoxLayout : public QBoxLayout
{ public:
inline void promoted_addItem(QLayoutItem* arg__1) { QBoxLayout::addItem(arg__1); }
inline int promoted_count() const { return QBoxLayout::count(); }
inline Qt::Orientations promoted_expandingDirections() const { return QBoxLayout::expandingDirections(); }
inline void promoted_invalidate() { QBoxLayout::invalidate(); }
inline QLayoutItem* promoted_itemAt(int arg__1) const { return QBoxLayout::itemAt(arg__1); }
inline QSize promoted_maximumSize() const { return QBoxLayout::maximumSize(); }
inline QSize promoted_minimumSize() const { return QBoxLayout::minimumSize(); }
inline void promoted_setGeometry(const QRect& arg__1) { QBoxLayout::setGeometry(arg__1); }
inline QLayoutItem* promoted_takeAt(int arg__1) { return QBoxLayout::takeAt(arg__1); }
};
class PythonQtWrapper_QBoxLayout : public QObject
{ Q_OBJECT
public:
Q_ENUMS(Direction )
enum Direction{
LeftToRight = QBoxLayout::LeftToRight, RightToLeft = QBoxLayout::RightToLeft, TopToBottom = QBoxLayout::TopToBottom, BottomToTop = QBoxLayout::BottomToTop, Down = QBoxLayout::Down, Up = QBoxLayout::Up};
public slots:
QBoxLayout* new_QBoxLayout(QBoxLayout::Direction arg__1, QWidget* parent = 0);
void delete_QBoxLayout(QBoxLayout* obj) { delete obj; }
void addItem(QBoxLayout* theWrappedObject, QLayoutItem* arg__1);
void addLayout(QBoxLayout* theWrappedObject, QLayout* layout, int stretch = 0);
void addSpacerItem(QBoxLayout* theWrappedObject, QSpacerItem* spacerItem);
void addSpacing(QBoxLayout* theWrappedObject, int size);
void addStretch(QBoxLayout* theWrappedObject, int stretch = 0);
void addStrut(QBoxLayout* theWrappedObject, int arg__1);
void addWidget(QBoxLayout* theWrappedObject, QWidget* arg__1, int stretch = 0, Qt::Alignment alignment = 0);
int count(QBoxLayout* theWrappedObject) const;
QBoxLayout::Direction direction(QBoxLayout* theWrappedObject) const;
Qt::Orientations expandingDirections(QBoxLayout* theWrappedObject) const;
bool hasHeightForWidth(QBoxLayout* theWrappedObject) const;
int heightForWidth(QBoxLayout* theWrappedObject, int arg__1) const;
void insertLayout(QBoxLayout* theWrappedObject, int index, QLayout* layout, int stretch = 0);
void insertSpacerItem(QBoxLayout* theWrappedObject, int index, QSpacerItem* spacerItem);
void insertSpacing(QBoxLayout* theWrappedObject, int index, int size);
void insertStretch(QBoxLayout* theWrappedObject, int index, int stretch = 0);
void insertWidget(QBoxLayout* theWrappedObject, int index, QWidget* widget, int stretch = 0, Qt::Alignment alignment = 0);
void invalidate(QBoxLayout* theWrappedObject);
QLayoutItem* itemAt(QBoxLayout* theWrappedObject, int arg__1) const;
QSize maximumSize(QBoxLayout* theWrappedObject) const;
int minimumHeightForWidth(QBoxLayout* theWrappedObject, int arg__1) const;
QSize minimumSize(QBoxLayout* theWrappedObject) const;
void setDirection(QBoxLayout* theWrappedObject, QBoxLayout::Direction arg__1);
void setGeometry(QBoxLayout* theWrappedObject, const QRect& arg__1);
void setSpacing(QBoxLayout* theWrappedObject, int spacing);
void setStretch(QBoxLayout* theWrappedObject, int index, int stretch);
bool setStretchFactor(QBoxLayout* theWrappedObject, QLayout* l, int stretch);
bool setStretchFactor(QBoxLayout* theWrappedObject, QWidget* w, int stretch);
QSize sizeHint(QBoxLayout* theWrappedObject) const;
int spacing(QBoxLayout* theWrappedObject) const;
int stretch(QBoxLayout* theWrappedObject, int index) const;
QLayoutItem* takeAt(QBoxLayout* theWrappedObject, int arg__1);
};
class PythonQtShell_QButtonGroup : public QButtonGroup
{
public:
PythonQtShell_QButtonGroup(QObject* parent = 0):QButtonGroup(parent),_wrapper(NULL) {};
~PythonQtShell_QButtonGroup();
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_QButtonGroup : public QObject
{ Q_OBJECT
public:
public slots:
QButtonGroup* new_QButtonGroup(QObject* parent = 0);
void delete_QButtonGroup(QButtonGroup* obj) { delete obj; }
void addButton(QButtonGroup* theWrappedObject, QAbstractButton* arg__1);
void addButton(QButtonGroup* theWrappedObject, QAbstractButton* arg__1, int id);
QAbstractButton* button(QButtonGroup* theWrappedObject, int id) const;
QList<QAbstractButton* > buttons(QButtonGroup* theWrappedObject) const;
QAbstractButton* checkedButton(QButtonGroup* theWrappedObject) const;
int checkedId(QButtonGroup* theWrappedObject) const;
bool exclusive(QButtonGroup* theWrappedObject) const;
int id(QButtonGroup* theWrappedObject, QAbstractButton* button) const;
void removeButton(QButtonGroup* theWrappedObject, QAbstractButton* arg__1);
void setExclusive(QButtonGroup* theWrappedObject, bool arg__1);
void setId(QButtonGroup* theWrappedObject, QAbstractButton* button, int id);
};
class PythonQtShell_QCDEStyle : public QCDEStyle
{
public:
PythonQtShell_QCDEStyle(bool useHighlightCols = false):QCDEStyle(useHighlightCols),_wrapper(NULL) {};
~PythonQtShell_QCDEStyle();
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) 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) 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, const QWidget* widget, QStyleHintReturn* returnData) const;
virtual QRect subControlRect(QStyle::ComplexControl cc, const QStyleOptionComplex* opt, QStyle::SubControl sc, const QWidget* widget) const;
virtual QRect subElementRect(QStyle::SubElement r, const QStyleOption* opt, const QWidget* widget) const;
virtual void timerEvent(QTimerEvent* event);
virtual void unpolish(QApplication* arg__1);
virtual void unpolish(QWidget* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QCDEStyle : public QCDEStyle
{ public:
inline void promoted_drawControl(QStyle::ControlElement element, const QStyleOption* opt, QPainter* p, const QWidget* w = 0) const { QCDEStyle::drawControl(element, opt, p, w); }
inline void promoted_drawPrimitive(QStyle::PrimitiveElement pe, const QStyleOption* opt, QPainter* p, const QWidget* w = 0) const { QCDEStyle::drawPrimitive(pe, opt, p, w); }
inline int promoted_pixelMetric(QStyle::PixelMetric metric, const QStyleOption* option = 0, const QWidget* widget = 0) const { return QCDEStyle::pixelMetric(metric, option, widget); }
inline QPalette promoted_standardPalette() const { return QCDEStyle::standardPalette(); }
};
class PythonQtWrapper_QCDEStyle : public QObject
{ Q_OBJECT
public:
public slots:
QCDEStyle* new_QCDEStyle(bool useHighlightCols = false);
void delete_QCDEStyle(QCDEStyle* obj) { delete obj; }
void drawControl(QCDEStyle* theWrappedObject, QStyle::ControlElement element, const QStyleOption* opt, QPainter* p, const QWidget* w = 0) const;
void drawPrimitive(QCDEStyle* theWrappedObject, QStyle::PrimitiveElement pe, const QStyleOption* opt, QPainter* p, const QWidget* w = 0) const;
int pixelMetric(QCDEStyle* theWrappedObject, QStyle::PixelMetric metric, const QStyleOption* option = 0, const QWidget* widget = 0) const;
QPalette standardPalette(QCDEStyle* theWrappedObject) const;
};
|