1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234
|
#include <PythonQt.h>
#include <QImage>
#include <QObject>
#include <QPixmap>
#include <QPoint>
#include <QTextCharFormat>
#include <QVariant>
#include <qabstractbutton.h>
#include <qabstractitemdelegate.h>
#include <qabstractitemmodel.h>
#include <qabstractitemview.h>
#include <qaction.h>
#include <qapplication.h>
#include <qbitmap.h>
#include <qbrush.h>
#include <qbuttongroup.h>
#include <qbytearray.h>
#include <qcalendarwidget.h>
#include <qcheckbox.h>
#include <qcleanlooksstyle.h>
#include <qclipboard.h>
#include <qcolor.h>
#include <qcolordialog.h>
#include <qcolumnview.h>
#include <qcombobox.h>
#include <qcommandlinkbutton.h>
#include <qcommonstyle.h>
#include <qcompleter.h>
#include <qcoreevent.h>
#include <qcursor.h>
#include <qdatastream.h>
#include <qdatawidgetmapper.h>
#include <qdatetime.h>
#include <qdatetimeedit.h>
#include <qdesktopservices.h>
#include <qdesktopwidget.h>
#include <qdial.h>
#include <qdialog.h>
#include <qdialogbuttonbox.h>
#include <qdirmodel.h>
#include <qdockwidget.h>
#include <qdrag.h>
#include <qevent.h>
#include <qfileiconprovider.h>
#include <qfileinfo.h>
#include <qfont.h>
#include <qgraphicseffect.h>
#include <qgraphicsproxywidget.h>
#include <qicon.h>
#include <qimage.h>
#include <qinputcontext.h>
#include <qitemselectionmodel.h>
#include <qkeysequence.h>
#include <qlayout.h>
#include <qlineedit.h>
#include <qlist.h>
#include <qlocale.h>
#include <qmargins.h>
#include <qmenu.h>
#include <qmimedata.h>
#include <qobject.h>
#include <qpaintdevice.h>
#include <qpaintengine.h>
#include <qpainter.h>
#include <qpair.h>
#include <qpalette.h>
#include <qpixmap.h>
#include <qpoint.h>
#include <qpushbutton.h>
#include <qrect.h>
#include <qregion.h>
#include <qscrollbar.h>
#include <qsize.h>
#include <qsizepolicy.h>
#include <qspinbox.h>
#include <qstringlist.h>
#include <qstyle.h>
#include <qstyleoption.h>
#include <qtextformat.h>
#include <qurl.h>
#include <qvalidator.h>
#include <qvector.h>
#include <qwidget.h>
#include <qwindowsstyle.h>
class PythonQtShell_QCalendarWidget : public QCalendarWidget
{
public:
PythonQtShell_QCalendarWidget(QWidget* parent = 0):QCalendarWidget(parent),_wrapper(NULL) {};
~PythonQtShell_QCalendarWidget();
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* event);
virtual bool eventFilter(QObject* watched, QEvent* event);
virtual void focusInEvent(QFocusEvent* arg__1);
virtual bool focusNextPrevChild(bool next);
virtual void focusOutEvent(QFocusEvent* arg__1);
virtual int heightForWidth(int arg__1) const;
virtual void hideEvent(QHideEvent* arg__1);
virtual void inputMethodEvent(QInputMethodEvent* arg__1);
virtual QVariant inputMethodQuery(Qt::InputMethodQuery arg__1) const;
virtual void keyPressEvent(QKeyEvent* event);
virtual void keyReleaseEvent(QKeyEvent* arg__1);
virtual void languageChange();
virtual void leaveEvent(QEvent* arg__1);
virtual int metric(QPaintDevice::PaintDeviceMetric arg__1) const;
virtual QSize minimumSizeHint() const;
virtual void mouseDoubleClickEvent(QMouseEvent* arg__1);
virtual void mouseMoveEvent(QMouseEvent* arg__1);
virtual void mousePressEvent(QMouseEvent* event);
virtual void mouseReleaseEvent(QMouseEvent* arg__1);
virtual void moveEvent(QMoveEvent* arg__1);
virtual void paintCell(QPainter* painter, const QRect& rect, const QDate& date) const;
virtual QPaintEngine* paintEngine() const;
virtual void paintEvent(QPaintEvent* arg__1);
virtual void resizeEvent(QResizeEvent* event);
virtual void showEvent(QShowEvent* arg__1);
virtual QSize sizeHint() const;
virtual void tabletEvent(QTabletEvent* arg__1);
virtual void timerEvent(QTimerEvent* arg__1);
virtual void wheelEvent(QWheelEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QCalendarWidget : public QCalendarWidget
{ public:
inline bool promoted_event(QEvent* event) { return QCalendarWidget::event(event); }
inline bool promoted_eventFilter(QObject* watched, QEvent* event) { return QCalendarWidget::eventFilter(watched, event); }
inline void promoted_keyPressEvent(QKeyEvent* event) { QCalendarWidget::keyPressEvent(event); }
inline QSize promoted_minimumSizeHint() const { return QCalendarWidget::minimumSizeHint(); }
inline void promoted_mousePressEvent(QMouseEvent* event) { QCalendarWidget::mousePressEvent(event); }
inline void promoted_paintCell(QPainter* painter, const QRect& rect, const QDate& date) const { QCalendarWidget::paintCell(painter, rect, date); }
inline void promoted_resizeEvent(QResizeEvent* event) { QCalendarWidget::resizeEvent(event); }
inline QSize promoted_sizeHint() const { return QCalendarWidget::sizeHint(); }
};
class PythonQtWrapper_QCalendarWidget : public QObject
{ Q_OBJECT
public:
public slots:
QCalendarWidget* new_QCalendarWidget(QWidget* parent = 0);
void delete_QCalendarWidget(QCalendarWidget* obj) { delete obj; }
int dateEditAcceptDelay(QCalendarWidget* theWrappedObject) const;
QMap<QDate , QTextCharFormat > dateTextFormat(QCalendarWidget* theWrappedObject) const;
QTextCharFormat dateTextFormat(QCalendarWidget* theWrappedObject, const QDate& date) const;
bool event(QCalendarWidget* theWrappedObject, QEvent* event);
bool eventFilter(QCalendarWidget* theWrappedObject, QObject* watched, QEvent* event);
Qt::DayOfWeek firstDayOfWeek(QCalendarWidget* theWrappedObject) const;
QTextCharFormat headerTextFormat(QCalendarWidget* theWrappedObject) const;
QCalendarWidget::HorizontalHeaderFormat horizontalHeaderFormat(QCalendarWidget* theWrappedObject) const;
bool isDateEditEnabled(QCalendarWidget* theWrappedObject) const;
bool isGridVisible(QCalendarWidget* theWrappedObject) const;
bool isNavigationBarVisible(QCalendarWidget* theWrappedObject) const;
void keyPressEvent(QCalendarWidget* theWrappedObject, QKeyEvent* event);
QDate maximumDate(QCalendarWidget* theWrappedObject) const;
QDate minimumDate(QCalendarWidget* theWrappedObject) const;
QSize minimumSizeHint(QCalendarWidget* theWrappedObject) const;
int monthShown(QCalendarWidget* theWrappedObject) const;
void mousePressEvent(QCalendarWidget* theWrappedObject, QMouseEvent* event);
void paintCell(QCalendarWidget* theWrappedObject, QPainter* painter, const QRect& rect, const QDate& date) const;
void resizeEvent(QCalendarWidget* theWrappedObject, QResizeEvent* event);
QDate selectedDate(QCalendarWidget* theWrappedObject) const;
QCalendarWidget::SelectionMode selectionMode(QCalendarWidget* theWrappedObject) const;
void setDateEditAcceptDelay(QCalendarWidget* theWrappedObject, int delay);
void setDateEditEnabled(QCalendarWidget* theWrappedObject, bool enable);
void setDateTextFormat(QCalendarWidget* theWrappedObject, const QDate& date, const QTextCharFormat& format);
void setFirstDayOfWeek(QCalendarWidget* theWrappedObject, Qt::DayOfWeek dayOfWeek);
void setHeaderTextFormat(QCalendarWidget* theWrappedObject, const QTextCharFormat& format);
void setHorizontalHeaderFormat(QCalendarWidget* theWrappedObject, QCalendarWidget::HorizontalHeaderFormat format);
void setMaximumDate(QCalendarWidget* theWrappedObject, const QDate& date);
void setMinimumDate(QCalendarWidget* theWrappedObject, const QDate& date);
void setSelectionMode(QCalendarWidget* theWrappedObject, QCalendarWidget::SelectionMode mode);
void setVerticalHeaderFormat(QCalendarWidget* theWrappedObject, QCalendarWidget::VerticalHeaderFormat format);
void setWeekdayTextFormat(QCalendarWidget* theWrappedObject, Qt::DayOfWeek dayOfWeek, const QTextCharFormat& format);
QSize sizeHint(QCalendarWidget* theWrappedObject) const;
QCalendarWidget::VerticalHeaderFormat verticalHeaderFormat(QCalendarWidget* theWrappedObject) const;
QTextCharFormat weekdayTextFormat(QCalendarWidget* theWrappedObject, Qt::DayOfWeek dayOfWeek) const;
int yearShown(QCalendarWidget* theWrappedObject) const;
};
class PythonQtShell_QCheckBox : public QCheckBox
{
public:
PythonQtShell_QCheckBox(QWidget* parent = 0):QCheckBox(parent),_wrapper(NULL) {};
PythonQtShell_QCheckBox(const QString& text, QWidget* parent = 0):QCheckBox(text, parent),_wrapper(NULL) {};
~PythonQtShell_QCheckBox();
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 void mouseDoubleClickEvent(QMouseEvent* arg__1);
virtual void mouseMoveEvent(QMouseEvent* arg__1);
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* arg__1);
virtual void resizeEvent(QResizeEvent* arg__1);
virtual void showEvent(QShowEvent* arg__1);
virtual void tabletEvent(QTabletEvent* arg__1);
virtual void timerEvent(QTimerEvent* e);
virtual void wheelEvent(QWheelEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QCheckBox : public QCheckBox
{ public:
inline void promoted_checkStateSet() { QCheckBox::checkStateSet(); }
inline bool promoted_event(QEvent* e) { return QCheckBox::event(e); }
inline bool promoted_hitButton(const QPoint& pos) const { return QCheckBox::hitButton(pos); }
inline void promoted_mouseMoveEvent(QMouseEvent* arg__1) { QCheckBox::mouseMoveEvent(arg__1); }
inline void promoted_nextCheckState() { QCheckBox::nextCheckState(); }
inline void promoted_paintEvent(QPaintEvent* arg__1) { QCheckBox::paintEvent(arg__1); }
};
class PythonQtWrapper_QCheckBox : public QObject
{ Q_OBJECT
public:
public slots:
QCheckBox* new_QCheckBox(QWidget* parent = 0);
QCheckBox* new_QCheckBox(const QString& text, QWidget* parent = 0);
void delete_QCheckBox(QCheckBox* obj) { delete obj; }
Qt::CheckState checkState(QCheckBox* theWrappedObject) const;
void checkStateSet(QCheckBox* theWrappedObject);
bool event(QCheckBox* theWrappedObject, QEvent* e);
bool hitButton(QCheckBox* theWrappedObject, const QPoint& pos) const;
bool isTristate(QCheckBox* theWrappedObject) const;
QSize minimumSizeHint(QCheckBox* theWrappedObject) const;
void mouseMoveEvent(QCheckBox* theWrappedObject, QMouseEvent* arg__1);
void nextCheckState(QCheckBox* theWrappedObject);
void paintEvent(QCheckBox* theWrappedObject, QPaintEvent* arg__1);
void setCheckState(QCheckBox* theWrappedObject, Qt::CheckState state);
void setTristate(QCheckBox* theWrappedObject, bool y = true);
QSize sizeHint(QCheckBox* theWrappedObject) const;
};
class PythonQtShell_QCleanlooksStyle : public QCleanlooksStyle
{
public:
PythonQtShell_QCleanlooksStyle():QCleanlooksStyle(),_wrapper(NULL) {};
~PythonQtShell_QCleanlooksStyle();
virtual void childEvent(QChildEvent* arg__1);
virtual void customEvent(QEvent* arg__1);
virtual void drawComplexControl(QStyle::ComplexControl control, const QStyleOptionComplex* option, QPainter* painter, const QWidget* widget) const;
virtual void drawControl(QStyle::ControlElement ce, const QStyleOption* option, QPainter* painter, const QWidget* widget) const;
virtual void drawItemPixmap(QPainter* painter, const QRect& rect, int alignment, const QPixmap& pixmap) const;
virtual void drawItemText(QPainter* painter, const QRect& rect, int flags, const QPalette& pal, bool enabled, const QString& text, QPalette::ColorRole textRole = QPalette::NoRole) const;
virtual void drawPrimitive(QStyle::PrimitiveElement elem, const QStyleOption* option, QPainter* painter, const QWidget* widget = 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 = 0) const;
virtual QRect itemPixmapRect(const QRect& r, int flags, const QPixmap& pixmap) const;
virtual int pixelMetric(QStyle::PixelMetric metric, const QStyleOption* option = 0, const QWidget* widget = 0) const;
virtual void polish(QApplication* app);
virtual void polish(QPalette& pal);
virtual void polish(QWidget* widget);
virtual QSize sizeFromContents(QStyle::ContentsType type, const QStyleOption* option, const QSize& size, const QWidget* widget) const;
virtual QPalette standardPalette() const;
virtual QPixmap standardPixmap(QStyle::StandardPixmap standardPixmap, const QStyleOption* opt, const QWidget* widget) const;
virtual int styleHint(QStyle::StyleHint hint, const QStyleOption* option = 0, const QWidget* widget = 0, QStyleHintReturn* returnData = 0) const;
virtual QRect subControlRect(QStyle::ComplexControl cc, const QStyleOptionComplex* opt, QStyle::SubControl sc, const QWidget* widget) const;
virtual QRect subElementRect(QStyle::SubElement r, const QStyleOption* opt, const QWidget* widget = 0) const;
virtual void timerEvent(QTimerEvent* event);
virtual void unpolish(QApplication* app);
virtual void unpolish(QWidget* widget);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QCleanlooksStyle : public QCleanlooksStyle
{ public:
inline void promoted_drawComplexControl(QStyle::ComplexControl control, const QStyleOptionComplex* option, QPainter* painter, const QWidget* widget) const { QCleanlooksStyle::drawComplexControl(control, option, painter, widget); }
inline void promoted_drawControl(QStyle::ControlElement ce, const QStyleOption* option, QPainter* painter, const QWidget* widget) const { QCleanlooksStyle::drawControl(ce, option, painter, widget); }
inline void promoted_drawItemPixmap(QPainter* painter, const QRect& rect, int alignment, const QPixmap& pixmap) const { QCleanlooksStyle::drawItemPixmap(painter, rect, alignment, pixmap); }
inline void promoted_drawItemText(QPainter* painter, const QRect& rect, int flags, const QPalette& pal, bool enabled, const QString& text, QPalette::ColorRole textRole = QPalette::NoRole) const { QCleanlooksStyle::drawItemText(painter, rect, flags, pal, enabled, text, textRole); }
inline void promoted_drawPrimitive(QStyle::PrimitiveElement elem, const QStyleOption* option, QPainter* painter, const QWidget* widget = 0) const { QCleanlooksStyle::drawPrimitive(elem, option, painter, widget); }
inline QPixmap promoted_generatedIconPixmap(QIcon::Mode iconMode, const QPixmap& pixmap, const QStyleOption* opt) const { return QCleanlooksStyle::generatedIconPixmap(iconMode, pixmap, opt); }
inline QStyle::SubControl promoted_hitTestComplexControl(QStyle::ComplexControl cc, const QStyleOptionComplex* opt, const QPoint& pt, const QWidget* w = 0) const { return QCleanlooksStyle::hitTestComplexControl(cc, opt, pt, w); }
inline QRect promoted_itemPixmapRect(const QRect& r, int flags, const QPixmap& pixmap) const { return QCleanlooksStyle::itemPixmapRect(r, flags, pixmap); }
inline int promoted_pixelMetric(QStyle::PixelMetric metric, const QStyleOption* option = 0, const QWidget* widget = 0) const { return QCleanlooksStyle::pixelMetric(metric, option, widget); }
inline void promoted_polish(QApplication* app) { QCleanlooksStyle::polish(app); }
inline void promoted_polish(QPalette& pal) { QCleanlooksStyle::polish(pal); }
inline void promoted_polish(QWidget* widget) { QCleanlooksStyle::polish(widget); }
inline QSize promoted_sizeFromContents(QStyle::ContentsType type, const QStyleOption* option, const QSize& size, const QWidget* widget) const { return QCleanlooksStyle::sizeFromContents(type, option, size, widget); }
inline QPalette promoted_standardPalette() const { return QCleanlooksStyle::standardPalette(); }
inline int promoted_styleHint(QStyle::StyleHint hint, const QStyleOption* option = 0, const QWidget* widget = 0, QStyleHintReturn* returnData = 0) const { return QCleanlooksStyle::styleHint(hint, option, widget, returnData); }
inline QRect promoted_subControlRect(QStyle::ComplexControl cc, const QStyleOptionComplex* opt, QStyle::SubControl sc, const QWidget* widget) const { return QCleanlooksStyle::subControlRect(cc, opt, sc, widget); }
inline QRect promoted_subElementRect(QStyle::SubElement r, const QStyleOption* opt, const QWidget* widget = 0) const { return QCleanlooksStyle::subElementRect(r, opt, widget); }
inline void promoted_unpolish(QApplication* app) { QCleanlooksStyle::unpolish(app); }
inline void promoted_unpolish(QWidget* widget) { QCleanlooksStyle::unpolish(widget); }
};
class PythonQtWrapper_QCleanlooksStyle : public QObject
{ Q_OBJECT
public:
public slots:
QCleanlooksStyle* new_QCleanlooksStyle();
void delete_QCleanlooksStyle(QCleanlooksStyle* obj) { delete obj; }
void drawComplexControl(QCleanlooksStyle* theWrappedObject, QStyle::ComplexControl control, const QStyleOptionComplex* option, QPainter* painter, const QWidget* widget) const;
void drawControl(QCleanlooksStyle* theWrappedObject, QStyle::ControlElement ce, const QStyleOption* option, QPainter* painter, const QWidget* widget) const;
void drawItemPixmap(QCleanlooksStyle* theWrappedObject, QPainter* painter, const QRect& rect, int alignment, const QPixmap& pixmap) const;
void drawItemText(QCleanlooksStyle* theWrappedObject, QPainter* painter, const QRect& rect, int flags, const QPalette& pal, bool enabled, const QString& text, QPalette::ColorRole textRole = QPalette::NoRole) const;
void drawPrimitive(QCleanlooksStyle* theWrappedObject, QStyle::PrimitiveElement elem, const QStyleOption* option, QPainter* painter, const QWidget* widget = 0) const;
QPixmap generatedIconPixmap(QCleanlooksStyle* theWrappedObject, QIcon::Mode iconMode, const QPixmap& pixmap, const QStyleOption* opt) const;
QStyle::SubControl hitTestComplexControl(QCleanlooksStyle* theWrappedObject, QStyle::ComplexControl cc, const QStyleOptionComplex* opt, const QPoint& pt, const QWidget* w = 0) const;
QRect itemPixmapRect(QCleanlooksStyle* theWrappedObject, const QRect& r, int flags, const QPixmap& pixmap) const;
int pixelMetric(QCleanlooksStyle* theWrappedObject, QStyle::PixelMetric metric, const QStyleOption* option = 0, const QWidget* widget = 0) const;
void polish(QCleanlooksStyle* theWrappedObject, QApplication* app);
void polish(QCleanlooksStyle* theWrappedObject, QPalette& pal);
void polish(QCleanlooksStyle* theWrappedObject, QWidget* widget);
QSize sizeFromContents(QCleanlooksStyle* theWrappedObject, QStyle::ContentsType type, const QStyleOption* option, const QSize& size, const QWidget* widget) const;
QPalette standardPalette(QCleanlooksStyle* theWrappedObject) const;
int styleHint(QCleanlooksStyle* theWrappedObject, QStyle::StyleHint hint, const QStyleOption* option = 0, const QWidget* widget = 0, QStyleHintReturn* returnData = 0) const;
QRect subControlRect(QCleanlooksStyle* theWrappedObject, QStyle::ComplexControl cc, const QStyleOptionComplex* opt, QStyle::SubControl sc, const QWidget* widget) const;
QRect subElementRect(QCleanlooksStyle* theWrappedObject, QStyle::SubElement r, const QStyleOption* opt, const QWidget* widget = 0) const;
void unpolish(QCleanlooksStyle* theWrappedObject, QApplication* app);
void unpolish(QCleanlooksStyle* theWrappedObject, QWidget* widget);
};
class PythonQtPublicPromoter_QClipboard : public QClipboard
{ public:
inline bool promoted_event(QEvent* arg__1) { return QClipboard::event(arg__1); }
};
class PythonQtWrapper_QClipboard : public QObject
{ Q_OBJECT
public:
Q_ENUMS(Mode )
enum Mode{
Clipboard = QClipboard::Clipboard, Selection = QClipboard::Selection, FindBuffer = QClipboard::FindBuffer, LastMode = QClipboard::LastMode};
public slots:
void clear(QClipboard* theWrappedObject, QClipboard::Mode mode = QClipboard::Clipboard);
bool event(QClipboard* theWrappedObject, QEvent* arg__1);
QImage image(QClipboard* theWrappedObject, QClipboard::Mode mode = QClipboard::Clipboard) const;
const QMimeData* mimeData(QClipboard* theWrappedObject, QClipboard::Mode mode = QClipboard::Clipboard) const;
bool ownsClipboard(QClipboard* theWrappedObject) const;
bool ownsFindBuffer(QClipboard* theWrappedObject) const;
bool ownsSelection(QClipboard* theWrappedObject) const;
QPixmap pixmap(QClipboard* theWrappedObject, QClipboard::Mode mode = QClipboard::Clipboard) const;
void setImage(QClipboard* theWrappedObject, const QImage& arg__1, QClipboard::Mode mode = QClipboard::Clipboard);
void setMimeData(QClipboard* theWrappedObject, QMimeData* data, QClipboard::Mode mode = QClipboard::Clipboard);
void setPixmap(QClipboard* theWrappedObject, const QPixmap& arg__1, QClipboard::Mode mode = QClipboard::Clipboard);
void setText(QClipboard* theWrappedObject, const QString& arg__1, QClipboard::Mode mode = QClipboard::Clipboard);
bool supportsFindBuffer(QClipboard* theWrappedObject) const;
bool supportsSelection(QClipboard* theWrappedObject) const;
QString text(QClipboard* theWrappedObject, QClipboard::Mode mode = QClipboard::Clipboard) const;
QString text(QClipboard* theWrappedObject, QString& subtype, QClipboard::Mode mode = QClipboard::Clipboard) const;
};
class PythonQtWrapper_QClipboardEvent : public QObject
{ Q_OBJECT
public:
public slots:
void delete_QClipboardEvent(QClipboardEvent* obj) { delete obj; }
};
class PythonQtWrapper_QCloseEvent : public QObject
{ Q_OBJECT
public:
public slots:
QCloseEvent* new_QCloseEvent();
void delete_QCloseEvent(QCloseEvent* obj) { delete obj; }
};
class PythonQtShell_QColorDialog : public QColorDialog
{
public:
PythonQtShell_QColorDialog(QWidget* parent = 0):QColorDialog(parent),_wrapper(NULL) {};
PythonQtShell_QColorDialog(const QColor& initial, QWidget* parent = 0):QColorDialog(initial, parent),_wrapper(NULL) {};
~PythonQtShell_QColorDialog();
virtual void accept();
virtual void actionEvent(QActionEvent* arg__1);
virtual void changeEvent(QEvent* event);
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 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_QColorDialog : public QColorDialog
{ public:
inline void promoted_changeEvent(QEvent* event) { QColorDialog::changeEvent(event); }
inline void promoted_done(int result) { QColorDialog::done(result); }
};
class PythonQtWrapper_QColorDialog : public QObject
{ Q_OBJECT
public:
public slots:
QColorDialog* new_QColorDialog(QWidget* parent = 0);
QColorDialog* new_QColorDialog(const QColor& initial, QWidget* parent = 0);
void delete_QColorDialog(QColorDialog* obj) { delete obj; }
void changeEvent(QColorDialog* theWrappedObject, QEvent* event);
QColor currentColor(QColorDialog* theWrappedObject) const;
unsigned int static_QColorDialog_customColor(int index);
int static_QColorDialog_customCount();
void done(QColorDialog* theWrappedObject, int result);
QColor static_QColorDialog_getColor(const QColor& initial = Qt::white, QWidget* parent = 0);
QColor static_QColorDialog_getColor(const QColor& initial, QWidget* parent, const QString& title, QColorDialog::ColorDialogOptions options = 0);
unsigned int static_QColorDialog_getRgba(unsigned int rgba = 0xffffffff, bool* ok = 0, QWidget* parent = 0);
void open(QColorDialog* theWrappedObject);
void open(QColorDialog* theWrappedObject, QObject* receiver, const char* member);
QColorDialog::ColorDialogOptions options(QColorDialog* theWrappedObject) const;
QColor selectedColor(QColorDialog* theWrappedObject) const;
void setCurrentColor(QColorDialog* theWrappedObject, const QColor& color);
void static_QColorDialog_setCustomColor(int index, unsigned int color);
void setOption(QColorDialog* theWrappedObject, QColorDialog::ColorDialogOption option, bool on = true);
void setOptions(QColorDialog* theWrappedObject, QColorDialog::ColorDialogOptions options);
void static_QColorDialog_setStandardColor(int index, unsigned int color);
void setVisible(QColorDialog* theWrappedObject, bool visible);
bool testOption(QColorDialog* theWrappedObject, QColorDialog::ColorDialogOption option) const;
};
class PythonQtShell_QColumnView : public QColumnView
{
public:
PythonQtShell_QColumnView(QWidget* parent = 0):QColumnView(parent),_wrapper(NULL) {};
~PythonQtShell_QColumnView();
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 QAbstractItemView* createColumn(const QModelIndex& rootIndex);
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 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) 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_QColumnView : public QColumnView
{ public:
inline QAbstractItemView* promoted_createColumn(const QModelIndex& rootIndex) { return QColumnView::createColumn(rootIndex); }
inline void promoted_currentChanged(const QModelIndex& current, const QModelIndex& previous) { QColumnView::currentChanged(current, previous); }
inline int promoted_horizontalOffset() const { return QColumnView::horizontalOffset(); }
inline QModelIndex promoted_indexAt(const QPoint& point) const { return QColumnView::indexAt(point); }
inline bool promoted_isIndexHidden(const QModelIndex& index) const { return QColumnView::isIndexHidden(index); }
inline void promoted_resizeEvent(QResizeEvent* event) { QColumnView::resizeEvent(event); }
inline void promoted_rowsInserted(const QModelIndex& parent, int start, int end) { QColumnView::rowsInserted(parent, start, end); }
inline void promoted_scrollContentsBy(int dx, int dy) { QColumnView::scrollContentsBy(dx, dy); }
inline void promoted_scrollTo(const QModelIndex& index, QAbstractItemView::ScrollHint hint = QAbstractItemView::EnsureVisible) { QColumnView::scrollTo(index, hint); }
inline void promoted_selectAll() { QColumnView::selectAll(); }
inline void promoted_setModel(QAbstractItemModel* model) { QColumnView::setModel(model); }
inline void promoted_setRootIndex(const QModelIndex& index) { QColumnView::setRootIndex(index); }
inline void promoted_setSelection(const QRect& rect, QItemSelectionModel::SelectionFlags command) { QColumnView::setSelection(rect, command); }
inline void promoted_setSelectionModel(QItemSelectionModel* selectionModel) { QColumnView::setSelectionModel(selectionModel); }
inline int promoted_verticalOffset() const { return QColumnView::verticalOffset(); }
inline QRect promoted_visualRect(const QModelIndex& index) const { return QColumnView::visualRect(index); }
inline QRegion promoted_visualRegionForSelection(const QItemSelection& selection) const { return QColumnView::visualRegionForSelection(selection); }
};
class PythonQtWrapper_QColumnView : public QObject
{ Q_OBJECT
public:
public slots:
QColumnView* new_QColumnView(QWidget* parent = 0);
void delete_QColumnView(QColumnView* obj) { delete obj; }
QList<int > columnWidths(QColumnView* theWrappedObject) const;
QAbstractItemView* createColumn(QColumnView* theWrappedObject, const QModelIndex& rootIndex);
void currentChanged(QColumnView* theWrappedObject, const QModelIndex& current, const QModelIndex& previous);
int horizontalOffset(QColumnView* theWrappedObject) const;
QModelIndex indexAt(QColumnView* theWrappedObject, const QPoint& point) const;
bool isIndexHidden(QColumnView* theWrappedObject, const QModelIndex& index) const;
QWidget* previewWidget(QColumnView* theWrappedObject) const;
void resizeEvent(QColumnView* theWrappedObject, QResizeEvent* event);
bool resizeGripsVisible(QColumnView* theWrappedObject) const;
void rowsInserted(QColumnView* theWrappedObject, const QModelIndex& parent, int start, int end);
void scrollContentsBy(QColumnView* theWrappedObject, int dx, int dy);
void scrollTo(QColumnView* theWrappedObject, const QModelIndex& index, QAbstractItemView::ScrollHint hint = QAbstractItemView::EnsureVisible);
void selectAll(QColumnView* theWrappedObject);
void setColumnWidths(QColumnView* theWrappedObject, const QList<int >& list);
void setModel(QColumnView* theWrappedObject, QAbstractItemModel* model);
void setPreviewWidget(QColumnView* theWrappedObject, QWidget* widget);
void setResizeGripsVisible(QColumnView* theWrappedObject, bool visible);
void setRootIndex(QColumnView* theWrappedObject, const QModelIndex& index);
void setSelection(QColumnView* theWrappedObject, const QRect& rect, QItemSelectionModel::SelectionFlags command);
void setSelectionModel(QColumnView* theWrappedObject, QItemSelectionModel* selectionModel);
QSize sizeHint(QColumnView* theWrappedObject) const;
int verticalOffset(QColumnView* theWrappedObject) const;
QRect visualRect(QColumnView* theWrappedObject, const QModelIndex& index) const;
QRegion visualRegionForSelection(QColumnView* theWrappedObject, const QItemSelection& selection) const;
};
class PythonQtShell_QComboBox : public QComboBox
{
public:
PythonQtShell_QComboBox(QWidget* parent = 0):QComboBox(parent),_wrapper(NULL) {};
~PythonQtShell_QComboBox();
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* e);
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 focusInEvent(QFocusEvent* e);
virtual bool focusNextPrevChild(bool next);
virtual void focusOutEvent(QFocusEvent* e);
virtual int heightForWidth(int arg__1) const;
virtual void hideEvent(QHideEvent* e);
virtual void hidePopup();
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 void mouseDoubleClickEvent(QMouseEvent* arg__1);
virtual void mouseMoveEvent(QMouseEvent* arg__1);
virtual void mousePressEvent(QMouseEvent* e);
virtual void mouseReleaseEvent(QMouseEvent* e);
virtual void moveEvent(QMoveEvent* arg__1);
virtual QPaintEngine* paintEngine() const;
virtual void paintEvent(QPaintEvent* e);
virtual void resizeEvent(QResizeEvent* e);
virtual void showEvent(QShowEvent* e);
virtual void showPopup();
virtual void tabletEvent(QTabletEvent* arg__1);
virtual void timerEvent(QTimerEvent* arg__1);
virtual void wheelEvent(QWheelEvent* e);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QComboBox : public QComboBox
{ public:
inline void promoted_changeEvent(QEvent* e) { QComboBox::changeEvent(e); }
inline void promoted_contextMenuEvent(QContextMenuEvent* e) { QComboBox::contextMenuEvent(e); }
inline bool promoted_event(QEvent* event) { return QComboBox::event(event); }
inline void promoted_focusInEvent(QFocusEvent* e) { QComboBox::focusInEvent(e); }
inline void promoted_focusOutEvent(QFocusEvent* e) { QComboBox::focusOutEvent(e); }
inline void promoted_hideEvent(QHideEvent* e) { QComboBox::hideEvent(e); }
inline void promoted_hidePopup() { QComboBox::hidePopup(); }
inline void promoted_inputMethodEvent(QInputMethodEvent* arg__1) { QComboBox::inputMethodEvent(arg__1); }
inline QVariant promoted_inputMethodQuery(Qt::InputMethodQuery arg__1) const { return QComboBox::inputMethodQuery(arg__1); }
inline void promoted_keyPressEvent(QKeyEvent* e) { QComboBox::keyPressEvent(e); }
inline void promoted_keyReleaseEvent(QKeyEvent* e) { QComboBox::keyReleaseEvent(e); }
inline void promoted_mousePressEvent(QMouseEvent* e) { QComboBox::mousePressEvent(e); }
inline void promoted_mouseReleaseEvent(QMouseEvent* e) { QComboBox::mouseReleaseEvent(e); }
inline void promoted_paintEvent(QPaintEvent* e) { QComboBox::paintEvent(e); }
inline void promoted_resizeEvent(QResizeEvent* e) { QComboBox::resizeEvent(e); }
inline void promoted_showEvent(QShowEvent* e) { QComboBox::showEvent(e); }
inline void promoted_showPopup() { QComboBox::showPopup(); }
inline void promoted_wheelEvent(QWheelEvent* e) { QComboBox::wheelEvent(e); }
};
class PythonQtWrapper_QComboBox : public QObject
{ Q_OBJECT
public:
public slots:
QComboBox* new_QComboBox(QWidget* parent = 0);
void delete_QComboBox(QComboBox* obj) { delete obj; }
void addItem(QComboBox* theWrappedObject, const QIcon& icon, const QString& text, const QVariant& userData = QVariant());
void addItem(QComboBox* theWrappedObject, const QString& text, const QVariant& userData = QVariant());
void addItems(QComboBox* theWrappedObject, const QStringList& texts);
void changeEvent(QComboBox* theWrappedObject, QEvent* e);
QCompleter* completer(QComboBox* theWrappedObject) const;
void contextMenuEvent(QComboBox* theWrappedObject, QContextMenuEvent* e);
int count(QComboBox* theWrappedObject) const;
int currentIndex(QComboBox* theWrappedObject) const;
QString currentText(QComboBox* theWrappedObject) const;
bool duplicatesEnabled(QComboBox* theWrappedObject) const;
bool event(QComboBox* theWrappedObject, QEvent* event);
int findData(QComboBox* theWrappedObject, const QVariant& data, int role = Qt::UserRole, Qt::MatchFlags flags = static_cast<Qt::MatchFlags>(Qt::MatchExactly|Qt::MatchCaseSensitive)) const;
int findText(QComboBox* theWrappedObject, const QString& text, Qt::MatchFlags flags = static_cast<Qt::MatchFlags>(Qt::MatchExactly|Qt::MatchCaseSensitive)) const;
void focusInEvent(QComboBox* theWrappedObject, QFocusEvent* e);
void focusOutEvent(QComboBox* theWrappedObject, QFocusEvent* e);
bool hasFrame(QComboBox* theWrappedObject) const;
void hideEvent(QComboBox* theWrappedObject, QHideEvent* e);
void hidePopup(QComboBox* theWrappedObject);
QSize iconSize(QComboBox* theWrappedObject) const;
void inputMethodEvent(QComboBox* theWrappedObject, QInputMethodEvent* arg__1);
QVariant inputMethodQuery(QComboBox* theWrappedObject, Qt::InputMethodQuery arg__1) const;
void insertItem(QComboBox* theWrappedObject, int index, const QIcon& icon, const QString& text, const QVariant& userData = QVariant());
void insertItem(QComboBox* theWrappedObject, int index, const QString& text, const QVariant& userData = QVariant());
void insertItems(QComboBox* theWrappedObject, int index, const QStringList& texts);
QComboBox::InsertPolicy insertPolicy(QComboBox* theWrappedObject) const;
void insertSeparator(QComboBox* theWrappedObject, int index);
bool isEditable(QComboBox* theWrappedObject) const;
QVariant itemData(QComboBox* theWrappedObject, int index, int role = Qt::UserRole) const;
QAbstractItemDelegate* itemDelegate(QComboBox* theWrappedObject) const;
QIcon itemIcon(QComboBox* theWrappedObject, int index) const;
QString itemText(QComboBox* theWrappedObject, int index) const;
void keyPressEvent(QComboBox* theWrappedObject, QKeyEvent* e);
void keyReleaseEvent(QComboBox* theWrappedObject, QKeyEvent* e);
QLineEdit* lineEdit(QComboBox* theWrappedObject) const;
int maxCount(QComboBox* theWrappedObject) const;
int maxVisibleItems(QComboBox* theWrappedObject) const;
int minimumContentsLength(QComboBox* theWrappedObject) const;
QSize minimumSizeHint(QComboBox* theWrappedObject) const;
QAbstractItemModel* model(QComboBox* theWrappedObject) const;
int modelColumn(QComboBox* theWrappedObject) const;
void mousePressEvent(QComboBox* theWrappedObject, QMouseEvent* e);
void mouseReleaseEvent(QComboBox* theWrappedObject, QMouseEvent* e);
void paintEvent(QComboBox* theWrappedObject, QPaintEvent* e);
void removeItem(QComboBox* theWrappedObject, int index);
void resizeEvent(QComboBox* theWrappedObject, QResizeEvent* e);
QModelIndex rootModelIndex(QComboBox* theWrappedObject) const;
void setCompleter(QComboBox* theWrappedObject, QCompleter* c);
void setDuplicatesEnabled(QComboBox* theWrappedObject, bool enable);
void setEditable(QComboBox* theWrappedObject, bool editable);
void setFrame(QComboBox* theWrappedObject, bool arg__1);
void setIconSize(QComboBox* theWrappedObject, const QSize& size);
void setInsertPolicy(QComboBox* theWrappedObject, QComboBox::InsertPolicy policy);
void setItemData(QComboBox* theWrappedObject, int index, const QVariant& value, int role = Qt::UserRole);
void setItemDelegate(QComboBox* theWrappedObject, QAbstractItemDelegate* delegate);
void setItemIcon(QComboBox* theWrappedObject, int index, const QIcon& icon);
void setItemText(QComboBox* theWrappedObject, int index, const QString& text);
void setLineEdit(QComboBox* theWrappedObject, QLineEdit* edit);
void setMaxCount(QComboBox* theWrappedObject, int max);
void setMaxVisibleItems(QComboBox* theWrappedObject, int maxItems);
void setMinimumContentsLength(QComboBox* theWrappedObject, int characters);
void setModel(QComboBox* theWrappedObject, QAbstractItemModel* model);
void setModelColumn(QComboBox* theWrappedObject, int visibleColumn);
void setRootModelIndex(QComboBox* theWrappedObject, const QModelIndex& index);
void setSizeAdjustPolicy(QComboBox* theWrappedObject, QComboBox::SizeAdjustPolicy policy);
void setValidator(QComboBox* theWrappedObject, const QValidator* v);
void setView(QComboBox* theWrappedObject, QAbstractItemView* itemView);
void showEvent(QComboBox* theWrappedObject, QShowEvent* e);
void showPopup(QComboBox* theWrappedObject);
QComboBox::SizeAdjustPolicy sizeAdjustPolicy(QComboBox* theWrappedObject) const;
QSize sizeHint(QComboBox* theWrappedObject) const;
const QValidator* validator(QComboBox* theWrappedObject) const;
QAbstractItemView* view(QComboBox* theWrappedObject) const;
void wheelEvent(QComboBox* theWrappedObject, QWheelEvent* e);
};
class PythonQtShell_QCommandLinkButton : public QCommandLinkButton
{
public:
PythonQtShell_QCommandLinkButton(QWidget* parent = 0):QCommandLinkButton(parent),_wrapper(NULL) {};
PythonQtShell_QCommandLinkButton(const QString& text, QWidget* parent = 0):QCommandLinkButton(text, parent),_wrapper(NULL) {};
PythonQtShell_QCommandLinkButton(const QString& text, const QString& description, QWidget* parent = 0):QCommandLinkButton(text, description, parent),_wrapper(NULL) {};
~PythonQtShell_QCommandLinkButton();
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* 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 bool hitButton(const QPoint& pos) const;
virtual void inputMethodEvent(QInputMethodEvent* arg__1);
virtual QVariant inputMethodQuery(Qt::InputMethodQuery arg__1) const;
virtual void keyPressEvent(QKeyEvent* arg__1);
virtual void keyReleaseEvent(QKeyEvent* e);
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* 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* arg__1);
virtual void resizeEvent(QResizeEvent* arg__1);
virtual void showEvent(QShowEvent* arg__1);
virtual void tabletEvent(QTabletEvent* arg__1);
virtual void timerEvent(QTimerEvent* e);
virtual void wheelEvent(QWheelEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QCommandLinkButton : public QCommandLinkButton
{ public:
inline bool promoted_event(QEvent* e) { return QCommandLinkButton::event(e); }
inline int promoted_heightForWidth(int arg__1) const { return QCommandLinkButton::heightForWidth(arg__1); }
inline void promoted_paintEvent(QPaintEvent* arg__1) { QCommandLinkButton::paintEvent(arg__1); }
};
class PythonQtWrapper_QCommandLinkButton : public QObject
{ Q_OBJECT
public:
public slots:
QCommandLinkButton* new_QCommandLinkButton(QWidget* parent = 0);
QCommandLinkButton* new_QCommandLinkButton(const QString& text, QWidget* parent = 0);
QCommandLinkButton* new_QCommandLinkButton(const QString& text, const QString& description, QWidget* parent = 0);
void delete_QCommandLinkButton(QCommandLinkButton* obj) { delete obj; }
QString description(QCommandLinkButton* theWrappedObject) const;
bool event(QCommandLinkButton* theWrappedObject, QEvent* e);
int heightForWidth(QCommandLinkButton* theWrappedObject, int arg__1) const;
void paintEvent(QCommandLinkButton* theWrappedObject, QPaintEvent* arg__1);
void setDescription(QCommandLinkButton* theWrappedObject, const QString& description);
};
class PythonQtShell_QCommonStyle : public QCommonStyle
{
public:
PythonQtShell_QCommonStyle():QCommonStyle(),_wrapper(NULL) {};
~PythonQtShell_QCommonStyle();
virtual void childEvent(QChildEvent* arg__1);
virtual void customEvent(QEvent* arg__1);
virtual void drawComplexControl(QStyle::ComplexControl cc, const QStyleOptionComplex* opt, QPainter* p, const QWidget* w = 0) const;
virtual void drawControl(QStyle::ControlElement element, const QStyleOption* opt, QPainter* p, const QWidget* w = 0) const;
virtual void drawItemPixmap(QPainter* painter, const QRect& rect, int alignment, const QPixmap& pixmap) const;
virtual void drawItemText(QPainter* painter, const QRect& rect, int flags, const QPalette& pal, bool enabled, const QString& text, QPalette::ColorRole textRole) const;
virtual void drawPrimitive(QStyle::PrimitiveElement pe, const QStyleOption* opt, QPainter* p, const QWidget* w = 0) const;
virtual bool event(QEvent* arg__1);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
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 = 0) const;
virtual QRect itemPixmapRect(const QRect& r, int flags, const QPixmap& pixmap) const;
virtual int pixelMetric(QStyle::PixelMetric m, const QStyleOption* opt = 0, const QWidget* widget = 0) const;
virtual void polish(QApplication* app);
virtual void polish(QPalette& arg__1);
virtual void polish(QWidget* widget);
virtual QSize sizeFromContents(QStyle::ContentsType ct, const QStyleOption* opt, const QSize& contentsSize, const QWidget* widget = 0) const;
virtual QPalette standardPalette() const;
virtual QPixmap standardPixmap(QStyle::StandardPixmap standardPixmap, const QStyleOption* opt, const QWidget* widget) const;
virtual int styleHint(QStyle::StyleHint sh, const QStyleOption* opt = 0, const QWidget* w = 0, QStyleHintReturn* shret = 0) const;
virtual QRect subControlRect(QStyle::ComplexControl cc, const QStyleOptionComplex* opt, QStyle::SubControl sc, const QWidget* w = 0) const;
virtual QRect subElementRect(QStyle::SubElement r, const QStyleOption* opt, const QWidget* widget = 0) const;
virtual void timerEvent(QTimerEvent* arg__1);
virtual void unpolish(QApplication* application);
virtual void unpolish(QWidget* widget);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QCommonStyle : public QCommonStyle
{ public:
inline void promoted_drawComplexControl(QStyle::ComplexControl cc, const QStyleOptionComplex* opt, QPainter* p, const QWidget* w = 0) const { QCommonStyle::drawComplexControl(cc, opt, p, w); }
inline void promoted_drawControl(QStyle::ControlElement element, const QStyleOption* opt, QPainter* p, const QWidget* w = 0) const { QCommonStyle::drawControl(element, opt, p, w); }
inline void promoted_drawPrimitive(QStyle::PrimitiveElement pe, const QStyleOption* opt, QPainter* p, const QWidget* w = 0) const { QCommonStyle::drawPrimitive(pe, opt, p, w); }
inline QPixmap promoted_generatedIconPixmap(QIcon::Mode iconMode, const QPixmap& pixmap, const QStyleOption* opt) const { return QCommonStyle::generatedIconPixmap(iconMode, pixmap, opt); }
inline QStyle::SubControl promoted_hitTestComplexControl(QStyle::ComplexControl cc, const QStyleOptionComplex* opt, const QPoint& pt, const QWidget* w = 0) const { return QCommonStyle::hitTestComplexControl(cc, opt, pt, w); }
inline int promoted_pixelMetric(QStyle::PixelMetric m, const QStyleOption* opt = 0, const QWidget* widget = 0) const { return QCommonStyle::pixelMetric(m, opt, widget); }
inline void promoted_polish(QApplication* app) { QCommonStyle::polish(app); }
inline void promoted_polish(QPalette& arg__1) { QCommonStyle::polish(arg__1); }
inline void promoted_polish(QWidget* widget) { QCommonStyle::polish(widget); }
inline QSize promoted_sizeFromContents(QStyle::ContentsType ct, const QStyleOption* opt, const QSize& contentsSize, const QWidget* widget = 0) const { return QCommonStyle::sizeFromContents(ct, opt, contentsSize, widget); }
inline int promoted_styleHint(QStyle::StyleHint sh, const QStyleOption* opt = 0, const QWidget* w = 0, QStyleHintReturn* shret = 0) const { return QCommonStyle::styleHint(sh, opt, w, shret); }
inline QRect promoted_subControlRect(QStyle::ComplexControl cc, const QStyleOptionComplex* opt, QStyle::SubControl sc, const QWidget* w = 0) const { return QCommonStyle::subControlRect(cc, opt, sc, w); }
inline QRect promoted_subElementRect(QStyle::SubElement r, const QStyleOption* opt, const QWidget* widget = 0) const { return QCommonStyle::subElementRect(r, opt, widget); }
inline void promoted_unpolish(QApplication* application) { QCommonStyle::unpolish(application); }
inline void promoted_unpolish(QWidget* widget) { QCommonStyle::unpolish(widget); }
};
class PythonQtWrapper_QCommonStyle : public QObject
{ Q_OBJECT
public:
public slots:
QCommonStyle* new_QCommonStyle();
void delete_QCommonStyle(QCommonStyle* obj) { delete obj; }
void drawComplexControl(QCommonStyle* theWrappedObject, QStyle::ComplexControl cc, const QStyleOptionComplex* opt, QPainter* p, const QWidget* w = 0) const;
void drawControl(QCommonStyle* theWrappedObject, QStyle::ControlElement element, const QStyleOption* opt, QPainter* p, const QWidget* w = 0) const;
void drawPrimitive(QCommonStyle* theWrappedObject, QStyle::PrimitiveElement pe, const QStyleOption* opt, QPainter* p, const QWidget* w = 0) const;
QPixmap generatedIconPixmap(QCommonStyle* theWrappedObject, QIcon::Mode iconMode, const QPixmap& pixmap, const QStyleOption* opt) const;
QStyle::SubControl hitTestComplexControl(QCommonStyle* theWrappedObject, QStyle::ComplexControl cc, const QStyleOptionComplex* opt, const QPoint& pt, const QWidget* w = 0) const;
int pixelMetric(QCommonStyle* theWrappedObject, QStyle::PixelMetric m, const QStyleOption* opt = 0, const QWidget* widget = 0) const;
void polish(QCommonStyle* theWrappedObject, QApplication* app);
void polish(QCommonStyle* theWrappedObject, QPalette& arg__1);
void polish(QCommonStyle* theWrappedObject, QWidget* widget);
QSize sizeFromContents(QCommonStyle* theWrappedObject, QStyle::ContentsType ct, const QStyleOption* opt, const QSize& contentsSize, const QWidget* widget = 0) const;
int styleHint(QCommonStyle* theWrappedObject, QStyle::StyleHint sh, const QStyleOption* opt = 0, const QWidget* w = 0, QStyleHintReturn* shret = 0) const;
QRect subControlRect(QCommonStyle* theWrappedObject, QStyle::ComplexControl cc, const QStyleOptionComplex* opt, QStyle::SubControl sc, const QWidget* w = 0) const;
QRect subElementRect(QCommonStyle* theWrappedObject, QStyle::SubElement r, const QStyleOption* opt, const QWidget* widget = 0) const;
void unpolish(QCommonStyle* theWrappedObject, QApplication* application);
void unpolish(QCommonStyle* theWrappedObject, QWidget* widget);
};
class PythonQtShell_QCompleter : public QCompleter
{
public:
PythonQtShell_QCompleter(QAbstractItemModel* model, QObject* parent = 0):QCompleter(model, parent),_wrapper(NULL) {};
PythonQtShell_QCompleter(QObject* parent = 0):QCompleter(parent),_wrapper(NULL) {};
PythonQtShell_QCompleter(const QStringList& completions, QObject* parent = 0):QCompleter(completions, parent),_wrapper(NULL) {};
~PythonQtShell_QCompleter();
virtual void childEvent(QChildEvent* arg__1);
virtual void customEvent(QEvent* arg__1);
virtual bool event(QEvent* arg__1);
virtual bool eventFilter(QObject* o, QEvent* e);
virtual QString pathFromIndex(const QModelIndex& index) const;
virtual QStringList splitPath(const QString& path) const;
virtual void timerEvent(QTimerEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QCompleter : public QCompleter
{ public:
inline bool promoted_event(QEvent* arg__1) { return QCompleter::event(arg__1); }
inline bool promoted_eventFilter(QObject* o, QEvent* e) { return QCompleter::eventFilter(o, e); }
inline QString promoted_pathFromIndex(const QModelIndex& index) const { return QCompleter::pathFromIndex(index); }
inline QStringList promoted_splitPath(const QString& path) const { return QCompleter::splitPath(path); }
};
class PythonQtWrapper_QCompleter : public QObject
{ Q_OBJECT
public:
Q_ENUMS(ModelSorting CompletionMode )
enum ModelSorting{
UnsortedModel = QCompleter::UnsortedModel, CaseSensitivelySortedModel = QCompleter::CaseSensitivelySortedModel, CaseInsensitivelySortedModel = QCompleter::CaseInsensitivelySortedModel};
enum CompletionMode{
PopupCompletion = QCompleter::PopupCompletion, UnfilteredPopupCompletion = QCompleter::UnfilteredPopupCompletion, InlineCompletion = QCompleter::InlineCompletion};
public slots:
QCompleter* new_QCompleter(QAbstractItemModel* model, QObject* parent = 0);
QCompleter* new_QCompleter(QObject* parent = 0);
QCompleter* new_QCompleter(const QStringList& completions, QObject* parent = 0);
void delete_QCompleter(QCompleter* obj) { delete obj; }
Qt::CaseSensitivity caseSensitivity(QCompleter* theWrappedObject) const;
int completionColumn(QCompleter* theWrappedObject) const;
int completionCount(QCompleter* theWrappedObject) const;
QCompleter::CompletionMode completionMode(QCompleter* theWrappedObject) const;
QAbstractItemModel* completionModel(QCompleter* theWrappedObject) const;
QString completionPrefix(QCompleter* theWrappedObject) const;
int completionRole(QCompleter* theWrappedObject) const;
QString currentCompletion(QCompleter* theWrappedObject) const;
QModelIndex currentIndex(QCompleter* theWrappedObject) const;
int currentRow(QCompleter* theWrappedObject) const;
bool event(QCompleter* theWrappedObject, QEvent* arg__1);
bool eventFilter(QCompleter* theWrappedObject, QObject* o, QEvent* e);
int maxVisibleItems(QCompleter* theWrappedObject) const;
QAbstractItemModel* model(QCompleter* theWrappedObject) const;
QCompleter::ModelSorting modelSorting(QCompleter* theWrappedObject) const;
QString pathFromIndex(QCompleter* theWrappedObject, const QModelIndex& index) const;
QAbstractItemView* popup(QCompleter* theWrappedObject) const;
void setCaseSensitivity(QCompleter* theWrappedObject, Qt::CaseSensitivity caseSensitivity);
void setCompletionColumn(QCompleter* theWrappedObject, int column);
void setCompletionMode(QCompleter* theWrappedObject, QCompleter::CompletionMode mode);
void setCompletionRole(QCompleter* theWrappedObject, int role);
bool setCurrentRow(QCompleter* theWrappedObject, int row);
void setMaxVisibleItems(QCompleter* theWrappedObject, int maxItems);
void setModel(QCompleter* theWrappedObject, QAbstractItemModel* c);
void setModelSorting(QCompleter* theWrappedObject, QCompleter::ModelSorting sorting);
void setPopup(QCompleter* theWrappedObject, QAbstractItemView* popup);
void setWidget(QCompleter* theWrappedObject, QWidget* widget);
QStringList splitPath(QCompleter* theWrappedObject, const QString& path) const;
QWidget* widget(QCompleter* theWrappedObject) const;
bool wrapAround(QCompleter* theWrappedObject) const;
};
class PythonQtWrapper_QConicalGradient : public QObject
{ Q_OBJECT
public:
public slots:
QConicalGradient* new_QConicalGradient();
QConicalGradient* new_QConicalGradient(const QPointF& center, qreal startAngle);
QConicalGradient* new_QConicalGradient(qreal cx, qreal cy, qreal startAngle);
QConicalGradient* new_QConicalGradient(const QConicalGradient& other) {
QConicalGradient* a = new QConicalGradient();
*((QConicalGradient*)a) = other;
return a; }
void delete_QConicalGradient(QConicalGradient* obj) { delete obj; }
qreal angle(QConicalGradient* theWrappedObject) const;
QPointF center(QConicalGradient* theWrappedObject) const;
void setAngle(QConicalGradient* theWrappedObject, qreal angle);
void setCenter(QConicalGradient* theWrappedObject, const QPointF& center);
void setCenter(QConicalGradient* theWrappedObject, qreal x, qreal y);
};
class PythonQtShell_QContextMenuEvent : public QContextMenuEvent
{
public:
PythonQtShell_QContextMenuEvent(QContextMenuEvent::Reason reason, const QPoint& pos):QContextMenuEvent(reason, pos),_wrapper(NULL) {};
PythonQtShell_QContextMenuEvent(QContextMenuEvent::Reason reason, const QPoint& pos, const QPoint& globalPos):QContextMenuEvent(reason, pos, globalPos),_wrapper(NULL) {};
PythonQtShell_QContextMenuEvent(QContextMenuEvent::Reason reason, const QPoint& pos, const QPoint& globalPos, Qt::KeyboardModifiers modifiers):QContextMenuEvent(reason, pos, globalPos, modifiers),_wrapper(NULL) {};
~PythonQtShell_QContextMenuEvent();
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QContextMenuEvent : public QObject
{ Q_OBJECT
public:
Q_ENUMS(Reason )
enum Reason{
Mouse = QContextMenuEvent::Mouse, Keyboard = QContextMenuEvent::Keyboard, Other = QContextMenuEvent::Other};
public slots:
QContextMenuEvent* new_QContextMenuEvent(QContextMenuEvent::Reason reason, const QPoint& pos);
QContextMenuEvent* new_QContextMenuEvent(QContextMenuEvent::Reason reason, const QPoint& pos, const QPoint& globalPos);
QContextMenuEvent* new_QContextMenuEvent(QContextMenuEvent::Reason reason, const QPoint& pos, const QPoint& globalPos, Qt::KeyboardModifiers modifiers);
void delete_QContextMenuEvent(QContextMenuEvent* obj) { delete obj; }
const QPoint* globalPos(QContextMenuEvent* theWrappedObject) const;
int globalX(QContextMenuEvent* theWrappedObject) const;
int globalY(QContextMenuEvent* theWrappedObject) const;
const QPoint* pos(QContextMenuEvent* theWrappedObject) const;
QContextMenuEvent::Reason reason(QContextMenuEvent* theWrappedObject) const;
int x(QContextMenuEvent* theWrappedObject) const;
int y(QContextMenuEvent* theWrappedObject) const;
};
class PythonQtShell_QDataWidgetMapper : public QDataWidgetMapper
{
public:
PythonQtShell_QDataWidgetMapper(QObject* parent = 0):QDataWidgetMapper(parent),_wrapper(NULL) {};
~PythonQtShell_QDataWidgetMapper();
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 setCurrentIndex(int index);
virtual void timerEvent(QTimerEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QDataWidgetMapper : public QDataWidgetMapper
{ public:
inline void promoted_setCurrentIndex(int index) { QDataWidgetMapper::setCurrentIndex(index); }
};
class PythonQtWrapper_QDataWidgetMapper : public QObject
{ Q_OBJECT
public:
public slots:
QDataWidgetMapper* new_QDataWidgetMapper(QObject* parent = 0);
void delete_QDataWidgetMapper(QDataWidgetMapper* obj) { delete obj; }
void addMapping(QDataWidgetMapper* theWrappedObject, QWidget* widget, int section);
void addMapping(QDataWidgetMapper* theWrappedObject, QWidget* widget, int section, const QByteArray& propertyName);
void clearMapping(QDataWidgetMapper* theWrappedObject);
int currentIndex(QDataWidgetMapper* theWrappedObject) const;
QAbstractItemDelegate* itemDelegate(QDataWidgetMapper* theWrappedObject) const;
QByteArray mappedPropertyName(QDataWidgetMapper* theWrappedObject, QWidget* widget) const;
int mappedSection(QDataWidgetMapper* theWrappedObject, QWidget* widget) const;
QWidget* mappedWidgetAt(QDataWidgetMapper* theWrappedObject, int section) const;
QAbstractItemModel* model(QDataWidgetMapper* theWrappedObject) const;
Qt::Orientation orientation(QDataWidgetMapper* theWrappedObject) const;
void removeMapping(QDataWidgetMapper* theWrappedObject, QWidget* widget);
QModelIndex rootIndex(QDataWidgetMapper* theWrappedObject) const;
void setCurrentIndex(QDataWidgetMapper* theWrappedObject, int index);
void setItemDelegate(QDataWidgetMapper* theWrappedObject, QAbstractItemDelegate* delegate);
void setModel(QDataWidgetMapper* theWrappedObject, QAbstractItemModel* model);
void setOrientation(QDataWidgetMapper* theWrappedObject, Qt::Orientation aOrientation);
void setRootIndex(QDataWidgetMapper* theWrappedObject, const QModelIndex& index);
void setSubmitPolicy(QDataWidgetMapper* theWrappedObject, QDataWidgetMapper::SubmitPolicy policy);
QDataWidgetMapper::SubmitPolicy submitPolicy(QDataWidgetMapper* theWrappedObject) const;
};
class PythonQtShell_QDateEdit : public QDateEdit
{
public:
PythonQtShell_QDateEdit(QWidget* parent = 0):QDateEdit(parent),_wrapper(NULL) {};
PythonQtShell_QDateEdit(const QDate& date, QWidget* parent = 0):QDateEdit(date, parent),_wrapper(NULL) {};
~PythonQtShell_QDateEdit();
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 QDateTime dateTimeFromText(const QString& text) const;
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 QString textFromDateTime(const QDateTime& dt) const;
virtual void timerEvent(QTimerEvent* event);
virtual QValidator::State validate(QString& input, int& pos) const;
virtual void wheelEvent(QWheelEvent* event);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QDateEdit : public QObject
{ Q_OBJECT
public:
public slots:
QDateEdit* new_QDateEdit(QWidget* parent = 0);
QDateEdit* new_QDateEdit(const QDate& date, QWidget* parent = 0);
void delete_QDateEdit(QDateEdit* obj) { delete obj; }
};
class PythonQtShell_QDateTimeEdit : public QDateTimeEdit
{
public:
PythonQtShell_QDateTimeEdit(QWidget* parent = 0):QDateTimeEdit(parent),_wrapper(NULL) {};
PythonQtShell_QDateTimeEdit(const QDate& d, QWidget* parent = 0):QDateTimeEdit(d, parent),_wrapper(NULL) {};
PythonQtShell_QDateTimeEdit(const QDateTime& dt, QWidget* parent = 0):QDateTimeEdit(dt, parent),_wrapper(NULL) {};
PythonQtShell_QDateTimeEdit(const QTime& t, QWidget* parent = 0):QDateTimeEdit(t, parent),_wrapper(NULL) {};
PythonQtShell_QDateTimeEdit(const QVariant& val, QVariant::Type parserType, QWidget* parent = 0):QDateTimeEdit(val, parserType, parent),_wrapper(NULL) {};
~PythonQtShell_QDateTimeEdit();
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 QDateTime dateTimeFromText(const QString& text) const;
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 QString textFromDateTime(const QDateTime& dt) const;
virtual void timerEvent(QTimerEvent* event);
virtual QValidator::State validate(QString& input, int& pos) const;
virtual void wheelEvent(QWheelEvent* event);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QDateTimeEdit : public QDateTimeEdit
{ public:
inline void promoted_clear() { QDateTimeEdit::clear(); }
inline QDateTime promoted_dateTimeFromText(const QString& text) const { return QDateTimeEdit::dateTimeFromText(text); }
inline bool promoted_event(QEvent* event) { return QDateTimeEdit::event(event); }
inline void promoted_fixup(QString& input) const { QDateTimeEdit::fixup(input); }
inline void promoted_focusInEvent(QFocusEvent* event) { QDateTimeEdit::focusInEvent(event); }
inline bool promoted_focusNextPrevChild(bool next) { return QDateTimeEdit::focusNextPrevChild(next); }
inline void promoted_keyPressEvent(QKeyEvent* event) { QDateTimeEdit::keyPressEvent(event); }
inline void promoted_mousePressEvent(QMouseEvent* event) { QDateTimeEdit::mousePressEvent(event); }
inline void promoted_paintEvent(QPaintEvent* event) { QDateTimeEdit::paintEvent(event); }
inline void promoted_stepBy(int steps) { QDateTimeEdit::stepBy(steps); }
inline QAbstractSpinBox::StepEnabled promoted_stepEnabled() const { return QDateTimeEdit::stepEnabled(); }
inline QString promoted_textFromDateTime(const QDateTime& dt) const { return QDateTimeEdit::textFromDateTime(dt); }
inline QValidator::State promoted_validate(QString& input, int& pos) const { return QDateTimeEdit::validate(input, pos); }
inline void promoted_wheelEvent(QWheelEvent* event) { QDateTimeEdit::wheelEvent(event); }
};
class PythonQtWrapper_QDateTimeEdit : public QObject
{ Q_OBJECT
public:
public slots:
QDateTimeEdit* new_QDateTimeEdit(QWidget* parent = 0);
QDateTimeEdit* new_QDateTimeEdit(const QDate& d, QWidget* parent = 0);
QDateTimeEdit* new_QDateTimeEdit(const QDateTime& dt, QWidget* parent = 0);
QDateTimeEdit* new_QDateTimeEdit(const QTime& t, QWidget* parent = 0);
void delete_QDateTimeEdit(QDateTimeEdit* obj) { delete obj; }
bool calendarPopup(QDateTimeEdit* theWrappedObject) const;
QCalendarWidget* calendarWidget(QDateTimeEdit* theWrappedObject) const;
void clear(QDateTimeEdit* theWrappedObject);
void clearMaximumDate(QDateTimeEdit* theWrappedObject);
void clearMaximumDateTime(QDateTimeEdit* theWrappedObject);
void clearMaximumTime(QDateTimeEdit* theWrappedObject);
void clearMinimumDate(QDateTimeEdit* theWrappedObject);
void clearMinimumDateTime(QDateTimeEdit* theWrappedObject);
void clearMinimumTime(QDateTimeEdit* theWrappedObject);
QDateTimeEdit::Section currentSection(QDateTimeEdit* theWrappedObject) const;
int currentSectionIndex(QDateTimeEdit* theWrappedObject) const;
QDate date(QDateTimeEdit* theWrappedObject) const;
QDateTime dateTime(QDateTimeEdit* theWrappedObject) const;
QDateTime dateTimeFromText(QDateTimeEdit* theWrappedObject, const QString& text) const;
QString displayFormat(QDateTimeEdit* theWrappedObject) const;
QDateTimeEdit::Sections displayedSections(QDateTimeEdit* theWrappedObject) const;
bool event(QDateTimeEdit* theWrappedObject, QEvent* event);
void fixup(QDateTimeEdit* theWrappedObject, QString& input) const;
void focusInEvent(QDateTimeEdit* theWrappedObject, QFocusEvent* event);
bool focusNextPrevChild(QDateTimeEdit* theWrappedObject, bool next);
void keyPressEvent(QDateTimeEdit* theWrappedObject, QKeyEvent* event);
QDate maximumDate(QDateTimeEdit* theWrappedObject) const;
QDateTime maximumDateTime(QDateTimeEdit* theWrappedObject) const;
QTime maximumTime(QDateTimeEdit* theWrappedObject) const;
QDate minimumDate(QDateTimeEdit* theWrappedObject) const;
QDateTime minimumDateTime(QDateTimeEdit* theWrappedObject) const;
QTime minimumTime(QDateTimeEdit* theWrappedObject) const;
void mousePressEvent(QDateTimeEdit* theWrappedObject, QMouseEvent* event);
void paintEvent(QDateTimeEdit* theWrappedObject, QPaintEvent* event);
QDateTimeEdit::Section sectionAt(QDateTimeEdit* theWrappedObject, int index) const;
int sectionCount(QDateTimeEdit* theWrappedObject) const;
QString sectionText(QDateTimeEdit* theWrappedObject, QDateTimeEdit::Section section) const;
void setCalendarPopup(QDateTimeEdit* theWrappedObject, bool enable);
void setCalendarWidget(QDateTimeEdit* theWrappedObject, QCalendarWidget* calendarWidget);
void setCurrentSection(QDateTimeEdit* theWrappedObject, QDateTimeEdit::Section section);
void setCurrentSectionIndex(QDateTimeEdit* theWrappedObject, int index);
void setDateRange(QDateTimeEdit* theWrappedObject, const QDate& min, const QDate& max);
void setDateTimeRange(QDateTimeEdit* theWrappedObject, const QDateTime& min, const QDateTime& max);
void setDisplayFormat(QDateTimeEdit* theWrappedObject, const QString& format);
void setMaximumDate(QDateTimeEdit* theWrappedObject, const QDate& max);
void setMaximumDateTime(QDateTimeEdit* theWrappedObject, const QDateTime& dt);
void setMaximumTime(QDateTimeEdit* theWrappedObject, const QTime& max);
void setMinimumDate(QDateTimeEdit* theWrappedObject, const QDate& min);
void setMinimumDateTime(QDateTimeEdit* theWrappedObject, const QDateTime& dt);
void setMinimumTime(QDateTimeEdit* theWrappedObject, const QTime& min);
void setSelectedSection(QDateTimeEdit* theWrappedObject, QDateTimeEdit::Section section);
void setTimeRange(QDateTimeEdit* theWrappedObject, const QTime& min, const QTime& max);
void setTimeSpec(QDateTimeEdit* theWrappedObject, Qt::TimeSpec spec);
QSize sizeHint(QDateTimeEdit* theWrappedObject) const;
void stepBy(QDateTimeEdit* theWrappedObject, int steps);
QAbstractSpinBox::StepEnabled stepEnabled(QDateTimeEdit* theWrappedObject) const;
QString textFromDateTime(QDateTimeEdit* theWrappedObject, const QDateTime& dt) const;
QTime time(QDateTimeEdit* theWrappedObject) const;
Qt::TimeSpec timeSpec(QDateTimeEdit* theWrappedObject) const;
QValidator::State validate(QDateTimeEdit* theWrappedObject, QString& input, int& pos) const;
void wheelEvent(QDateTimeEdit* theWrappedObject, QWheelEvent* event);
};
class PythonQtShell_QDesktopServices : public QDesktopServices
{
public:
PythonQtShell_QDesktopServices():QDesktopServices(),_wrapper(NULL) {};
~PythonQtShell_QDesktopServices();
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QDesktopServices : public QObject
{ Q_OBJECT
public:
Q_ENUMS(StandardLocation )
enum StandardLocation{
DesktopLocation = QDesktopServices::DesktopLocation, DocumentsLocation = QDesktopServices::DocumentsLocation, FontsLocation = QDesktopServices::FontsLocation, ApplicationsLocation = QDesktopServices::ApplicationsLocation, MusicLocation = QDesktopServices::MusicLocation, MoviesLocation = QDesktopServices::MoviesLocation, PicturesLocation = QDesktopServices::PicturesLocation, TempLocation = QDesktopServices::TempLocation, HomeLocation = QDesktopServices::HomeLocation, DataLocation = QDesktopServices::DataLocation, CacheLocation = QDesktopServices::CacheLocation};
public slots:
QDesktopServices* new_QDesktopServices();
void delete_QDesktopServices(QDesktopServices* obj) { delete obj; }
QString static_QDesktopServices_displayName(QDesktopServices::StandardLocation type);
bool static_QDesktopServices_openUrl(const QUrl& url);
void static_QDesktopServices_setUrlHandler(const QString& scheme, QObject* receiver, const char* method);
QString static_QDesktopServices_storageLocation(QDesktopServices::StandardLocation type);
void static_QDesktopServices_unsetUrlHandler(const QString& scheme);
};
class PythonQtShell_QDesktopWidget : public QDesktopWidget
{
public:
PythonQtShell_QDesktopWidget():QDesktopWidget(),_wrapper(NULL) {};
~PythonQtShell_QDesktopWidget();
virtual void actionEvent(QActionEvent* arg__1);
virtual void changeEvent(QEvent* arg__1);
virtual void childEvent(QChildEvent* arg__1);
virtual void closeEvent(QCloseEvent* arg__1);
virtual void contextMenuEvent(QContextMenuEvent* arg__1);
virtual void customEvent(QEvent* arg__1);
virtual int devType() const;
virtual void dragEnterEvent(QDragEnterEvent* arg__1);
virtual void dragLeaveEvent(QDragLeaveEvent* arg__1);
virtual void dragMoveEvent(QDragMoveEvent* arg__1);
virtual void dropEvent(QDropEvent* arg__1);
virtual void enterEvent(QEvent* arg__1);
virtual bool event(QEvent* arg__1);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
virtual void focusInEvent(QFocusEvent* arg__1);
virtual bool focusNextPrevChild(bool next);
virtual void focusOutEvent(QFocusEvent* arg__1);
virtual int heightForWidth(int arg__1) const;
virtual void hideEvent(QHideEvent* arg__1);
virtual void inputMethodEvent(QInputMethodEvent* arg__1);
virtual QVariant inputMethodQuery(Qt::InputMethodQuery arg__1) const;
virtual void keyPressEvent(QKeyEvent* arg__1);
virtual void keyReleaseEvent(QKeyEvent* arg__1);
virtual void languageChange();
virtual void leaveEvent(QEvent* arg__1);
virtual int metric(QPaintDevice::PaintDeviceMetric arg__1) const;
virtual QSize minimumSizeHint() const;
virtual void mouseDoubleClickEvent(QMouseEvent* arg__1);
virtual void mouseMoveEvent(QMouseEvent* arg__1);
virtual void mousePressEvent(QMouseEvent* arg__1);
virtual void mouseReleaseEvent(QMouseEvent* arg__1);
virtual void moveEvent(QMoveEvent* arg__1);
virtual QPaintEngine* paintEngine() const;
virtual void paintEvent(QPaintEvent* arg__1);
virtual void resizeEvent(QResizeEvent* e);
virtual void showEvent(QShowEvent* arg__1);
virtual QSize sizeHint() const;
virtual void tabletEvent(QTabletEvent* arg__1);
virtual void timerEvent(QTimerEvent* arg__1);
virtual void wheelEvent(QWheelEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QDesktopWidget : public QDesktopWidget
{ public:
inline void promoted_resizeEvent(QResizeEvent* e) { QDesktopWidget::resizeEvent(e); }
};
class PythonQtWrapper_QDesktopWidget : public QObject
{ Q_OBJECT
public:
public slots:
QDesktopWidget* new_QDesktopWidget();
void delete_QDesktopWidget(QDesktopWidget* obj) { delete obj; }
const QRect availableGeometry(QDesktopWidget* theWrappedObject, const QPoint& point) const;
const QRect availableGeometry(QDesktopWidget* theWrappedObject, const QWidget* widget) const;
const QRect availableGeometry(QDesktopWidget* theWrappedObject, int screen = -1) const;
bool isVirtualDesktop(QDesktopWidget* theWrappedObject) const;
int numScreens(QDesktopWidget* theWrappedObject) const;
int primaryScreen(QDesktopWidget* theWrappedObject) const;
void resizeEvent(QDesktopWidget* theWrappedObject, QResizeEvent* e);
QWidget* screen(QDesktopWidget* theWrappedObject, int screen = -1);
int screenCount(QDesktopWidget* theWrappedObject) const;
const QRect screenGeometry(QDesktopWidget* theWrappedObject, const QPoint& point) const;
const QRect screenGeometry(QDesktopWidget* theWrappedObject, const QWidget* widget) const;
const QRect screenGeometry(QDesktopWidget* theWrappedObject, int screen = -1) const;
int screenNumber(QDesktopWidget* theWrappedObject, const QPoint& arg__1) const;
int screenNumber(QDesktopWidget* theWrappedObject, const QWidget* widget = 0) const;
};
class PythonQtShell_QDial : public QDial
{
public:
PythonQtShell_QDial(QWidget* parent = 0):QDial(parent),_wrapper(NULL) {};
~PythonQtShell_QDial();
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 void mouseDoubleClickEvent(QMouseEvent* arg__1);
virtual void mouseMoveEvent(QMouseEvent* me);
virtual void mousePressEvent(QMouseEvent* me);
virtual void mouseReleaseEvent(QMouseEvent* me);
virtual void moveEvent(QMoveEvent* arg__1);
virtual QPaintEngine* paintEngine() const;
virtual void paintEvent(QPaintEvent* pe);
virtual void resizeEvent(QResizeEvent* re);
virtual void showEvent(QShowEvent* arg__1);
virtual void tabletEvent(QTabletEvent* arg__1);
virtual void timerEvent(QTimerEvent* arg__1);
virtual void wheelEvent(QWheelEvent* e);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QDial : public QDial
{ public:
inline bool promoted_event(QEvent* e) { return QDial::event(e); }
inline void promoted_mouseMoveEvent(QMouseEvent* me) { QDial::mouseMoveEvent(me); }
inline void promoted_mousePressEvent(QMouseEvent* me) { QDial::mousePressEvent(me); }
inline void promoted_mouseReleaseEvent(QMouseEvent* me) { QDial::mouseReleaseEvent(me); }
inline void promoted_paintEvent(QPaintEvent* pe) { QDial::paintEvent(pe); }
inline void promoted_resizeEvent(QResizeEvent* re) { QDial::resizeEvent(re); }
};
class PythonQtWrapper_QDial : public QObject
{ Q_OBJECT
public:
public slots:
QDial* new_QDial(QWidget* parent = 0);
void delete_QDial(QDial* obj) { delete obj; }
bool event(QDial* theWrappedObject, QEvent* e);
QSize minimumSizeHint(QDial* theWrappedObject) const;
void mouseMoveEvent(QDial* theWrappedObject, QMouseEvent* me);
void mousePressEvent(QDial* theWrappedObject, QMouseEvent* me);
void mouseReleaseEvent(QDial* theWrappedObject, QMouseEvent* me);
int notchSize(QDial* theWrappedObject) const;
qreal notchTarget(QDial* theWrappedObject) const;
bool notchesVisible(QDial* theWrappedObject) const;
void paintEvent(QDial* theWrappedObject, QPaintEvent* pe);
void resizeEvent(QDial* theWrappedObject, QResizeEvent* re);
void setNotchTarget(QDial* theWrappedObject, double target);
QSize sizeHint(QDial* theWrappedObject) const;
bool wrapping(QDial* theWrappedObject) const;
};
class PythonQtShell_QDialog : public QDialog
{
public:
PythonQtShell_QDialog(QWidget* parent = 0, Qt::WindowFlags f = 0):QDialog(parent, f),_wrapper(NULL) {};
~PythonQtShell_QDialog();
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 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_QDialog : public QDialog
{ public:
inline void promoted_accept() { QDialog::accept(); }
inline void promoted_closeEvent(QCloseEvent* arg__1) { QDialog::closeEvent(arg__1); }
inline void promoted_contextMenuEvent(QContextMenuEvent* arg__1) { QDialog::contextMenuEvent(arg__1); }
inline void promoted_done(int arg__1) { QDialog::done(arg__1); }
inline bool promoted_eventFilter(QObject* arg__1, QEvent* arg__2) { return QDialog::eventFilter(arg__1, arg__2); }
inline void promoted_keyPressEvent(QKeyEvent* arg__1) { QDialog::keyPressEvent(arg__1); }
inline void promoted_reject() { QDialog::reject(); }
inline void promoted_resizeEvent(QResizeEvent* arg__1) { QDialog::resizeEvent(arg__1); }
inline void promoted_showEvent(QShowEvent* arg__1) { QDialog::showEvent(arg__1); }
};
class PythonQtWrapper_QDialog : public QObject
{ Q_OBJECT
public:
Q_ENUMS(DialogCode )
enum DialogCode{
Rejected = QDialog::Rejected, Accepted = QDialog::Accepted};
public slots:
QDialog* new_QDialog(QWidget* parent = 0, Qt::WindowFlags f = 0);
void delete_QDialog(QDialog* obj) { delete obj; }
void accept(QDialog* theWrappedObject);
void closeEvent(QDialog* theWrappedObject, QCloseEvent* arg__1);
void contextMenuEvent(QDialog* theWrappedObject, QContextMenuEvent* arg__1);
void done(QDialog* theWrappedObject, int arg__1);
bool eventFilter(QDialog* theWrappedObject, QObject* arg__1, QEvent* arg__2);
bool isSizeGripEnabled(QDialog* theWrappedObject) const;
void keyPressEvent(QDialog* theWrappedObject, QKeyEvent* arg__1);
QSize minimumSizeHint(QDialog* theWrappedObject) const;
void reject(QDialog* theWrappedObject);
void resizeEvent(QDialog* theWrappedObject, QResizeEvent* arg__1);
int result(QDialog* theWrappedObject) const;
void setModal(QDialog* theWrappedObject, bool modal);
void setResult(QDialog* theWrappedObject, int r);
void setSizeGripEnabled(QDialog* theWrappedObject, bool arg__1);
void setVisible(QDialog* theWrappedObject, bool visible);
void showEvent(QDialog* theWrappedObject, QShowEvent* arg__1);
QSize sizeHint(QDialog* theWrappedObject) const;
};
class PythonQtShell_QDialogButtonBox : public QDialogButtonBox
{
public:
PythonQtShell_QDialogButtonBox(QDialogButtonBox::StandardButtons buttons, Qt::Orientation orientation = Qt::Horizontal, QWidget* parent = 0):QDialogButtonBox(buttons, orientation, parent),_wrapper(NULL) {};
PythonQtShell_QDialogButtonBox(QWidget* parent = 0):QDialogButtonBox(parent),_wrapper(NULL) {};
PythonQtShell_QDialogButtonBox(Qt::Orientation orientation, QWidget* parent = 0):QDialogButtonBox(orientation, parent),_wrapper(NULL) {};
~PythonQtShell_QDialogButtonBox();
virtual void actionEvent(QActionEvent* arg__1);
virtual void changeEvent(QEvent* event);
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* event);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
virtual void focusInEvent(QFocusEvent* arg__1);
virtual bool focusNextPrevChild(bool next);
virtual void focusOutEvent(QFocusEvent* arg__1);
virtual int heightForWidth(int arg__1) const;
virtual void hideEvent(QHideEvent* arg__1);
virtual void inputMethodEvent(QInputMethodEvent* arg__1);
virtual QVariant inputMethodQuery(Qt::InputMethodQuery arg__1) const;
virtual void keyPressEvent(QKeyEvent* arg__1);
virtual void keyReleaseEvent(QKeyEvent* arg__1);
virtual void languageChange();
virtual void leaveEvent(QEvent* arg__1);
virtual int metric(QPaintDevice::PaintDeviceMetric arg__1) const;
virtual QSize minimumSizeHint() const;
virtual void mouseDoubleClickEvent(QMouseEvent* arg__1);
virtual void mouseMoveEvent(QMouseEvent* arg__1);
virtual void mousePressEvent(QMouseEvent* arg__1);
virtual void mouseReleaseEvent(QMouseEvent* arg__1);
virtual void moveEvent(QMoveEvent* arg__1);
virtual QPaintEngine* paintEngine() const;
virtual void paintEvent(QPaintEvent* arg__1);
virtual void resizeEvent(QResizeEvent* arg__1);
virtual void showEvent(QShowEvent* arg__1);
virtual QSize sizeHint() const;
virtual void tabletEvent(QTabletEvent* arg__1);
virtual void timerEvent(QTimerEvent* arg__1);
virtual void wheelEvent(QWheelEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QDialogButtonBox : public QDialogButtonBox
{ public:
inline void promoted_changeEvent(QEvent* event) { QDialogButtonBox::changeEvent(event); }
inline bool promoted_event(QEvent* event) { return QDialogButtonBox::event(event); }
};
class PythonQtWrapper_QDialogButtonBox : public QObject
{ Q_OBJECT
public:
Q_ENUMS(ButtonLayout ButtonRole StandardButton )
Q_FLAGS(StandardButtons )
enum ButtonLayout{
WinLayout = QDialogButtonBox::WinLayout, MacLayout = QDialogButtonBox::MacLayout, KdeLayout = QDialogButtonBox::KdeLayout, GnomeLayout = QDialogButtonBox::GnomeLayout};
enum ButtonRole{
InvalidRole = QDialogButtonBox::InvalidRole, AcceptRole = QDialogButtonBox::AcceptRole, RejectRole = QDialogButtonBox::RejectRole, DestructiveRole = QDialogButtonBox::DestructiveRole, ActionRole = QDialogButtonBox::ActionRole, HelpRole = QDialogButtonBox::HelpRole, YesRole = QDialogButtonBox::YesRole, NoRole = QDialogButtonBox::NoRole, ResetRole = QDialogButtonBox::ResetRole, ApplyRole = QDialogButtonBox::ApplyRole, NRoles = QDialogButtonBox::NRoles};
enum StandardButton{
NoButton = QDialogButtonBox::NoButton, Ok = QDialogButtonBox::Ok, Save = QDialogButtonBox::Save, SaveAll = QDialogButtonBox::SaveAll, Open = QDialogButtonBox::Open, Yes = QDialogButtonBox::Yes, YesToAll = QDialogButtonBox::YesToAll, No = QDialogButtonBox::No, NoToAll = QDialogButtonBox::NoToAll, Abort = QDialogButtonBox::Abort, Retry = QDialogButtonBox::Retry, Ignore = QDialogButtonBox::Ignore, Close = QDialogButtonBox::Close, Cancel = QDialogButtonBox::Cancel, Discard = QDialogButtonBox::Discard, Help = QDialogButtonBox::Help, Apply = QDialogButtonBox::Apply, Reset = QDialogButtonBox::Reset, RestoreDefaults = QDialogButtonBox::RestoreDefaults, FirstButton = QDialogButtonBox::FirstButton, LastButton = QDialogButtonBox::LastButton};
Q_DECLARE_FLAGS(StandardButtons, StandardButton)
public slots:
QDialogButtonBox* new_QDialogButtonBox(QDialogButtonBox::StandardButtons buttons, Qt::Orientation orientation = Qt::Horizontal, QWidget* parent = 0);
QDialogButtonBox* new_QDialogButtonBox(QWidget* parent = 0);
QDialogButtonBox* new_QDialogButtonBox(Qt::Orientation orientation, QWidget* parent = 0);
void delete_QDialogButtonBox(QDialogButtonBox* obj) { delete obj; }
void addButton(QDialogButtonBox* theWrappedObject, QAbstractButton* button, QDialogButtonBox::ButtonRole role);
QPushButton* addButton(QDialogButtonBox* theWrappedObject, QDialogButtonBox::StandardButton button);
QPushButton* addButton(QDialogButtonBox* theWrappedObject, const QString& text, QDialogButtonBox::ButtonRole role);
QPushButton* button(QDialogButtonBox* theWrappedObject, QDialogButtonBox::StandardButton which) const;
QDialogButtonBox::ButtonRole buttonRole(QDialogButtonBox* theWrappedObject, QAbstractButton* button) const;
QList<QAbstractButton* > buttons(QDialogButtonBox* theWrappedObject) const;
bool centerButtons(QDialogButtonBox* theWrappedObject) const;
void changeEvent(QDialogButtonBox* theWrappedObject, QEvent* event);
void clear(QDialogButtonBox* theWrappedObject);
bool event(QDialogButtonBox* theWrappedObject, QEvent* event);
Qt::Orientation orientation(QDialogButtonBox* theWrappedObject) const;
void removeButton(QDialogButtonBox* theWrappedObject, QAbstractButton* button);
void setCenterButtons(QDialogButtonBox* theWrappedObject, bool center);
void setOrientation(QDialogButtonBox* theWrappedObject, Qt::Orientation orientation);
void setStandardButtons(QDialogButtonBox* theWrappedObject, QDialogButtonBox::StandardButtons buttons);
QDialogButtonBox::StandardButton standardButton(QDialogButtonBox* theWrappedObject, QAbstractButton* button) const;
QDialogButtonBox::StandardButtons standardButtons(QDialogButtonBox* theWrappedObject) const;
};
class PythonQtShell_QDirModel : public QDirModel
{
public:
PythonQtShell_QDirModel(QObject* parent = 0):QDirModel(parent),_wrapper(NULL) {};
PythonQtShell_QDirModel(const QStringList& nameFilters, QDir::Filters filters, QDir::SortFlags sort, QObject* parent = 0):QDirModel(nameFilters, filters, sort, parent),_wrapper(NULL) {};
~PythonQtShell_QDirModel();
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 = QModelIndex()) const;
virtual void customEvent(QEvent* arg__1);
virtual QVariant data(const QModelIndex& index, 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& index = QModelIndex()) const;
virtual QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) 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 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 = QModelIndex()) 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);
virtual bool setItemData(const QModelIndex& index, const QMap<int , QVariant >& roles);
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_QDirModel : public QDirModel
{ public:
inline int promoted_columnCount(const QModelIndex& parent = QModelIndex()) const { return QDirModel::columnCount(parent); }
inline QVariant promoted_data(const QModelIndex& index, int role = Qt::DisplayRole) const { return QDirModel::data(index, role); }
inline bool promoted_dropMimeData(const QMimeData* data, Qt::DropAction action, int row, int column, const QModelIndex& parent) { return QDirModel::dropMimeData(data, action, row, column, parent); }
inline Qt::ItemFlags promoted_flags(const QModelIndex& index) const { return QDirModel::flags(index); }
inline bool promoted_hasChildren(const QModelIndex& index = QModelIndex()) const { return QDirModel::hasChildren(index); }
inline QVariant promoted_headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const { return QDirModel::headerData(section, orientation, role); }
inline QModelIndex promoted_index(int row, int column, const QModelIndex& parent = QModelIndex()) const { return QDirModel::index(row, column, parent); }
inline QMimeData* promoted_mimeData(const QList<QModelIndex >& indexes) const { return QDirModel::mimeData(indexes); }
inline QStringList promoted_mimeTypes() const { return QDirModel::mimeTypes(); }
inline QModelIndex promoted_parent(const QModelIndex& child) const { return QDirModel::parent(child); }
inline int promoted_rowCount(const QModelIndex& parent = QModelIndex()) const { return QDirModel::rowCount(parent); }
inline bool promoted_setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole) { return QDirModel::setData(index, value, role); }
inline void promoted_sort(int column, Qt::SortOrder order = Qt::AscendingOrder) { QDirModel::sort(column, order); }
inline Qt::DropActions promoted_supportedDropActions() const { return QDirModel::supportedDropActions(); }
};
class PythonQtWrapper_QDirModel : public QObject
{ Q_OBJECT
public:
Q_ENUMS(Roles )
enum Roles{
FileIconRole = QDirModel::FileIconRole, FilePathRole = QDirModel::FilePathRole, FileNameRole = QDirModel::FileNameRole};
public slots:
QDirModel* new_QDirModel(QObject* parent = 0);
QDirModel* new_QDirModel(const QStringList& nameFilters, QDir::Filters filters, QDir::SortFlags sort, QObject* parent = 0);
void delete_QDirModel(QDirModel* obj) { delete obj; }
int columnCount(QDirModel* theWrappedObject, const QModelIndex& parent = QModelIndex()) const;
QVariant data(QDirModel* theWrappedObject, const QModelIndex& index, int role = Qt::DisplayRole) const;
bool dropMimeData(QDirModel* theWrappedObject, const QMimeData* data, Qt::DropAction action, int row, int column, const QModelIndex& parent);
QIcon fileIcon(QDirModel* theWrappedObject, const QModelIndex& index) const;
QFileInfo fileInfo(QDirModel* theWrappedObject, const QModelIndex& index) const;
QString fileName(QDirModel* theWrappedObject, const QModelIndex& index) const;
QString filePath(QDirModel* theWrappedObject, const QModelIndex& index) const;
QDir::Filters filter(QDirModel* theWrappedObject) const;
Qt::ItemFlags flags(QDirModel* theWrappedObject, const QModelIndex& index) const;
bool hasChildren(QDirModel* theWrappedObject, const QModelIndex& index = QModelIndex()) const;
QVariant headerData(QDirModel* theWrappedObject, int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
QFileIconProvider* iconProvider(QDirModel* theWrappedObject) const;
QModelIndex index(QDirModel* theWrappedObject, const QString& path, int column = 0) const;
QModelIndex index(QDirModel* theWrappedObject, int row, int column, const QModelIndex& parent = QModelIndex()) const;
bool isDir(QDirModel* theWrappedObject, const QModelIndex& index) const;
bool isReadOnly(QDirModel* theWrappedObject) const;
bool lazyChildCount(QDirModel* theWrappedObject) const;
QMimeData* mimeData(QDirModel* theWrappedObject, const QList<QModelIndex >& indexes) const;
QStringList mimeTypes(QDirModel* theWrappedObject) const;
QModelIndex mkdir(QDirModel* theWrappedObject, const QModelIndex& parent, const QString& name);
QStringList nameFilters(QDirModel* theWrappedObject) const;
QObject* parent(QDirModel* theWrappedObject) const;
QModelIndex parent(QDirModel* theWrappedObject, const QModelIndex& child) const;
bool remove(QDirModel* theWrappedObject, const QModelIndex& index);
bool resolveSymlinks(QDirModel* theWrappedObject) const;
bool rmdir(QDirModel* theWrappedObject, const QModelIndex& index);
int rowCount(QDirModel* theWrappedObject, const QModelIndex& parent = QModelIndex()) const;
bool setData(QDirModel* theWrappedObject, const QModelIndex& index, const QVariant& value, int role = Qt::EditRole);
void setFilter(QDirModel* theWrappedObject, QDir::Filters filters);
void setIconProvider(QDirModel* theWrappedObject, QFileIconProvider* provider);
void setLazyChildCount(QDirModel* theWrappedObject, bool enable);
void setNameFilters(QDirModel* theWrappedObject, const QStringList& filters);
void setReadOnly(QDirModel* theWrappedObject, bool enable);
void setResolveSymlinks(QDirModel* theWrappedObject, bool enable);
void setSorting(QDirModel* theWrappedObject, QDir::SortFlags sort);
void sort(QDirModel* theWrappedObject, int column, Qt::SortOrder order = Qt::AscendingOrder);
QDir::SortFlags sorting(QDirModel* theWrappedObject) const;
Qt::DropActions supportedDropActions(QDirModel* theWrappedObject) const;
};
class PythonQtShell_QDockWidget : public QDockWidget
{
public:
PythonQtShell_QDockWidget(QWidget* parent = 0, Qt::WindowFlags flags = 0):QDockWidget(parent, flags),_wrapper(NULL) {};
PythonQtShell_QDockWidget(const QString& title, QWidget* parent = 0, Qt::WindowFlags flags = 0):QDockWidget(title, parent, flags),_wrapper(NULL) {};
~PythonQtShell_QDockWidget();
virtual void actionEvent(QActionEvent* arg__1);
virtual void changeEvent(QEvent* event);
virtual void childEvent(QChildEvent* arg__1);
virtual void closeEvent(QCloseEvent* event);
virtual void contextMenuEvent(QContextMenuEvent* arg__1);
virtual void customEvent(QEvent* arg__1);
virtual int devType() const;
virtual void 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 focusInEvent(QFocusEvent* arg__1);
virtual bool focusNextPrevChild(bool next);
virtual void focusOutEvent(QFocusEvent* arg__1);
virtual int heightForWidth(int arg__1) const;
virtual void hideEvent(QHideEvent* arg__1);
virtual void inputMethodEvent(QInputMethodEvent* arg__1);
virtual QVariant inputMethodQuery(Qt::InputMethodQuery arg__1) const;
virtual void keyPressEvent(QKeyEvent* arg__1);
virtual void keyReleaseEvent(QKeyEvent* arg__1);
virtual void languageChange();
virtual void leaveEvent(QEvent* arg__1);
virtual int metric(QPaintDevice::PaintDeviceMetric arg__1) const;
virtual QSize minimumSizeHint() const;
virtual void mouseDoubleClickEvent(QMouseEvent* arg__1);
virtual void mouseMoveEvent(QMouseEvent* arg__1);
virtual void mousePressEvent(QMouseEvent* arg__1);
virtual void mouseReleaseEvent(QMouseEvent* arg__1);
virtual void moveEvent(QMoveEvent* arg__1);
virtual QPaintEngine* paintEngine() const;
virtual void paintEvent(QPaintEvent* event);
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* arg__1);
virtual void wheelEvent(QWheelEvent* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QDockWidget : public QDockWidget
{ public:
inline void promoted_changeEvent(QEvent* event) { QDockWidget::changeEvent(event); }
inline void promoted_closeEvent(QCloseEvent* event) { QDockWidget::closeEvent(event); }
inline bool promoted_event(QEvent* event) { return QDockWidget::event(event); }
inline void promoted_paintEvent(QPaintEvent* event) { QDockWidget::paintEvent(event); }
};
class PythonQtWrapper_QDockWidget : public QObject
{ Q_OBJECT
public:
Q_ENUMS(DockWidgetFeature )
Q_FLAGS(DockWidgetFeatures )
enum DockWidgetFeature{
DockWidgetClosable = QDockWidget::DockWidgetClosable, DockWidgetMovable = QDockWidget::DockWidgetMovable, DockWidgetFloatable = QDockWidget::DockWidgetFloatable, DockWidgetVerticalTitleBar = QDockWidget::DockWidgetVerticalTitleBar, DockWidgetFeatureMask = QDockWidget::DockWidgetFeatureMask, AllDockWidgetFeatures = QDockWidget::AllDockWidgetFeatures, NoDockWidgetFeatures = QDockWidget::NoDockWidgetFeatures, Reserved = QDockWidget::Reserved};
Q_DECLARE_FLAGS(DockWidgetFeatures, DockWidgetFeature)
public slots:
QDockWidget* new_QDockWidget(QWidget* parent = 0, Qt::WindowFlags flags = 0);
QDockWidget* new_QDockWidget(const QString& title, QWidget* parent = 0, Qt::WindowFlags flags = 0);
void delete_QDockWidget(QDockWidget* obj) { delete obj; }
Qt::DockWidgetAreas allowedAreas(QDockWidget* theWrappedObject) const;
void changeEvent(QDockWidget* theWrappedObject, QEvent* event);
void closeEvent(QDockWidget* theWrappedObject, QCloseEvent* event);
bool event(QDockWidget* theWrappedObject, QEvent* event);
QDockWidget::DockWidgetFeatures features(QDockWidget* theWrappedObject) const;
bool isAreaAllowed(QDockWidget* theWrappedObject, Qt::DockWidgetArea area) const;
bool isFloating(QDockWidget* theWrappedObject) const;
void paintEvent(QDockWidget* theWrappedObject, QPaintEvent* event);
void setAllowedAreas(QDockWidget* theWrappedObject, Qt::DockWidgetAreas areas);
void setFeatures(QDockWidget* theWrappedObject, QDockWidget::DockWidgetFeatures features);
void setFloating(QDockWidget* theWrappedObject, bool floating);
void setTitleBarWidget(QDockWidget* theWrappedObject, QWidget* widget);
void setWidget(QDockWidget* theWrappedObject, QWidget* widget);
QWidget* titleBarWidget(QDockWidget* theWrappedObject) const;
QAction* toggleViewAction(QDockWidget* theWrappedObject) const;
QWidget* widget(QDockWidget* theWrappedObject) const;
};
class PythonQtShell_QDoubleSpinBox : public QDoubleSpinBox
{
public:
PythonQtShell_QDoubleSpinBox(QWidget* parent = 0):QDoubleSpinBox(parent),_wrapper(NULL) {};
~PythonQtShell_QDoubleSpinBox();
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& str) 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 QString textFromValue(double val) const;
virtual void timerEvent(QTimerEvent* event);
virtual QValidator::State validate(QString& input, int& pos) const;
virtual double valueFromText(const QString& text) const;
virtual void wheelEvent(QWheelEvent* event);
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QDoubleSpinBox : public QDoubleSpinBox
{ public:
inline void promoted_fixup(QString& str) const { QDoubleSpinBox::fixup(str); }
inline QString promoted_textFromValue(double val) const { return QDoubleSpinBox::textFromValue(val); }
inline QValidator::State promoted_validate(QString& input, int& pos) const { return QDoubleSpinBox::validate(input, pos); }
inline double promoted_valueFromText(const QString& text) const { return QDoubleSpinBox::valueFromText(text); }
};
class PythonQtWrapper_QDoubleSpinBox : public QObject
{ Q_OBJECT
public:
public slots:
QDoubleSpinBox* new_QDoubleSpinBox(QWidget* parent = 0);
void delete_QDoubleSpinBox(QDoubleSpinBox* obj) { delete obj; }
QString cleanText(QDoubleSpinBox* theWrappedObject) const;
int decimals(QDoubleSpinBox* theWrappedObject) const;
void fixup(QDoubleSpinBox* theWrappedObject, QString& str) const;
double maximum(QDoubleSpinBox* theWrappedObject) const;
double minimum(QDoubleSpinBox* theWrappedObject) const;
QString prefix(QDoubleSpinBox* theWrappedObject) const;
void setDecimals(QDoubleSpinBox* theWrappedObject, int prec);
void setMaximum(QDoubleSpinBox* theWrappedObject, double max);
void setMinimum(QDoubleSpinBox* theWrappedObject, double min);
void setPrefix(QDoubleSpinBox* theWrappedObject, const QString& prefix);
void setRange(QDoubleSpinBox* theWrappedObject, double min, double max);
void setSingleStep(QDoubleSpinBox* theWrappedObject, double val);
void setSuffix(QDoubleSpinBox* theWrappedObject, const QString& suffix);
double singleStep(QDoubleSpinBox* theWrappedObject) const;
QString suffix(QDoubleSpinBox* theWrappedObject) const;
QString textFromValue(QDoubleSpinBox* theWrappedObject, double val) const;
QValidator::State validate(QDoubleSpinBox* theWrappedObject, QString& input, int& pos) const;
double value(QDoubleSpinBox* theWrappedObject) const;
double valueFromText(QDoubleSpinBox* theWrappedObject, const QString& text) const;
};
class PythonQtShell_QDoubleValidator : public QDoubleValidator
{
public:
PythonQtShell_QDoubleValidator(QObject* parent = 0):QDoubleValidator(parent),_wrapper(NULL) {};
PythonQtShell_QDoubleValidator(double bottom, double top, int decimals, QObject* parent = 0):QDoubleValidator(bottom, top, decimals, parent),_wrapper(NULL) {};
~PythonQtShell_QDoubleValidator();
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 fixup(QString& arg__1) const;
virtual void setRange(double bottom, double top, int decimals = 0);
virtual void timerEvent(QTimerEvent* arg__1);
virtual QValidator::State validate(QString& arg__1, int& arg__2) const;
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QDoubleValidator : public QDoubleValidator
{ public:
inline void promoted_setRange(double bottom, double top, int decimals = 0) { QDoubleValidator::setRange(bottom, top, decimals); }
inline QValidator::State promoted_validate(QString& arg__1, int& arg__2) const { return QDoubleValidator::validate(arg__1, arg__2); }
};
class PythonQtWrapper_QDoubleValidator : public QObject
{ Q_OBJECT
public:
public slots:
QDoubleValidator* new_QDoubleValidator(QObject* parent = 0);
QDoubleValidator* new_QDoubleValidator(double bottom, double top, int decimals, QObject* parent = 0);
void delete_QDoubleValidator(QDoubleValidator* obj) { delete obj; }
double bottom(QDoubleValidator* theWrappedObject) const;
int decimals(QDoubleValidator* theWrappedObject) const;
QDoubleValidator::Notation notation(QDoubleValidator* theWrappedObject) const;
void setBottom(QDoubleValidator* theWrappedObject, double arg__1);
void setDecimals(QDoubleValidator* theWrappedObject, int arg__1);
void setNotation(QDoubleValidator* theWrappedObject, QDoubleValidator::Notation arg__1);
void setRange(QDoubleValidator* theWrappedObject, double bottom, double top, int decimals = 0);
void setTop(QDoubleValidator* theWrappedObject, double arg__1);
double top(QDoubleValidator* theWrappedObject) const;
QValidator::State validate(QDoubleValidator* theWrappedObject, QString& arg__1, int& arg__2) const;
};
class PythonQtShell_QDrag : public QDrag
{
public:
PythonQtShell_QDrag(QWidget* dragSource):QDrag(dragSource),_wrapper(NULL) {};
~PythonQtShell_QDrag();
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_QDrag : public QObject
{ Q_OBJECT
public:
public slots:
QDrag* new_QDrag(QWidget* dragSource);
void delete_QDrag(QDrag* obj) { delete obj; }
Qt::DropAction exec(QDrag* theWrappedObject, Qt::DropActions supportedActions = Qt::MoveAction);
Qt::DropAction exec(QDrag* theWrappedObject, Qt::DropActions supportedActions, Qt::DropAction defaultAction);
QPoint hotSpot(QDrag* theWrappedObject) const;
QMimeData* mimeData(QDrag* theWrappedObject) const;
QPixmap pixmap(QDrag* theWrappedObject) const;
void setDragCursor(QDrag* theWrappedObject, const QPixmap& cursor, Qt::DropAction action);
void setHotSpot(QDrag* theWrappedObject, const QPoint& hotspot);
void setMimeData(QDrag* theWrappedObject, QMimeData* data);
void setPixmap(QDrag* theWrappedObject, const QPixmap& arg__1);
QWidget* source(QDrag* theWrappedObject) const;
QWidget* target(QDrag* theWrappedObject) const;
};
class PythonQtWrapper_QDragEnterEvent : public QObject
{ Q_OBJECT
public:
public slots:
QDragEnterEvent* new_QDragEnterEvent(const QPoint& pos, Qt::DropActions actions, const QMimeData* data, Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers);
void delete_QDragEnterEvent(QDragEnterEvent* obj) { delete obj; }
};
class PythonQtWrapper_QDragLeaveEvent : public QObject
{ Q_OBJECT
public:
public slots:
QDragLeaveEvent* new_QDragLeaveEvent();
void delete_QDragLeaveEvent(QDragLeaveEvent* obj) { delete obj; }
};
class PythonQtShell_QDragMoveEvent : public QDragMoveEvent
{
public:
PythonQtShell_QDragMoveEvent(const QPoint& pos, Qt::DropActions actions, const QMimeData* data, Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers, QEvent::Type type = QEvent::DragMove):QDragMoveEvent(pos, actions, data, buttons, modifiers, type),_wrapper(NULL) {};
~PythonQtShell_QDragMoveEvent();
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtWrapper_QDragMoveEvent : public QObject
{ Q_OBJECT
public:
public slots:
QDragMoveEvent* new_QDragMoveEvent(const QPoint& pos, Qt::DropActions actions, const QMimeData* data, Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers, QEvent::Type type = QEvent::DragMove);
void delete_QDragMoveEvent(QDragMoveEvent* obj) { delete obj; }
void accept(QDragMoveEvent* theWrappedObject, const QRect& r);
QRect answerRect(QDragMoveEvent* theWrappedObject) const;
void ignore(QDragMoveEvent* theWrappedObject, const QRect& r);
};
|