|
6 | 6 | #include <QStringList> |
7 | 7 | #include <QVariant> |
8 | 8 | #include <qabstractanimation.h> |
| 9 | +#include <qabstracteventdispatcher.h> |
9 | 10 | #include <qabstractitemmodel.h> |
10 | 11 | #include <qabstractstate.h> |
11 | 12 | #include <qanimationgroup.h> |
|
25 | 26 | #include <qcoreevent.h> |
26 | 27 | #include <qdatastream.h> |
27 | 28 | #include <qdatetime.h> |
28 | | -#include <qdeadlinetimer.h> |
29 | 29 | #include <qiodevice.h> |
30 | 30 | #include <qjsonarray.h> |
31 | 31 | #include <qjsonobject.h> |
|
37 | 37 | #include <qobject.h> |
38 | 38 | #include <qregularexpression.h> |
39 | 39 | #include <qsize.h> |
| 40 | +#include <qsocketnotifier.h> |
40 | 41 | #include <qstate.h> |
41 | 42 | #include <qstatemachine.h> |
42 | 43 | #include <qstringlist.h> |
@@ -370,6 +371,103 @@ void PythonQtWrapper_QAbstractAnimation::updateState(QAbstractAnimation* theWrap |
370 | 371 |
|
371 | 372 |
|
372 | 373 |
|
| 374 | +void PythonQtWrapper_QAbstractEventDispatcher::closingDown(QAbstractEventDispatcher* theWrappedObject) |
| 375 | +{ |
| 376 | + ( theWrappedObject->closingDown()); |
| 377 | +} |
| 378 | + |
| 379 | +bool PythonQtWrapper_QAbstractEventDispatcher::filterNativeEvent(QAbstractEventDispatcher* theWrappedObject, const QByteArray& eventType, void* message, long* result) |
| 380 | +{ |
| 381 | + return ( theWrappedObject->filterNativeEvent(eventType, message, result)); |
| 382 | +} |
| 383 | + |
| 384 | +void PythonQtWrapper_QAbstractEventDispatcher::flush(QAbstractEventDispatcher* theWrappedObject) |
| 385 | +{ |
| 386 | + ( theWrappedObject->flush()); |
| 387 | +} |
| 388 | + |
| 389 | +bool PythonQtWrapper_QAbstractEventDispatcher::hasPendingEvents(QAbstractEventDispatcher* theWrappedObject) |
| 390 | +{ |
| 391 | + return ( theWrappedObject->hasPendingEvents()); |
| 392 | +} |
| 393 | + |
| 394 | +QAbstractEventDispatcher* PythonQtWrapper_QAbstractEventDispatcher::static_QAbstractEventDispatcher_instance(QThread* thread) |
| 395 | +{ |
| 396 | + return (QAbstractEventDispatcher::instance(thread)); |
| 397 | +} |
| 398 | + |
| 399 | +void PythonQtWrapper_QAbstractEventDispatcher::interrupt(QAbstractEventDispatcher* theWrappedObject) |
| 400 | +{ |
| 401 | + ( theWrappedObject->interrupt()); |
| 402 | +} |
| 403 | + |
| 404 | +bool PythonQtWrapper_QAbstractEventDispatcher::processEvents(QAbstractEventDispatcher* theWrappedObject, QEventLoop::ProcessEventsFlags flags) |
| 405 | +{ |
| 406 | + return ( theWrappedObject->processEvents(flags)); |
| 407 | +} |
| 408 | + |
| 409 | +void PythonQtWrapper_QAbstractEventDispatcher::registerSocketNotifier(QAbstractEventDispatcher* theWrappedObject, QSocketNotifier* notifier) |
| 410 | +{ |
| 411 | + ( theWrappedObject->registerSocketNotifier(notifier)); |
| 412 | +} |
| 413 | + |
| 414 | +int PythonQtWrapper_QAbstractEventDispatcher::registerTimer(QAbstractEventDispatcher* theWrappedObject, int interval, Qt::TimerType timerType, QObject* object) |
| 415 | +{ |
| 416 | + return ( theWrappedObject->registerTimer(interval, timerType, object)); |
| 417 | +} |
| 418 | + |
| 419 | +void PythonQtWrapper_QAbstractEventDispatcher::registerTimer(QAbstractEventDispatcher* theWrappedObject, int timerId, int interval, Qt::TimerType timerType, QObject* object) |
| 420 | +{ |
| 421 | + ( theWrappedObject->registerTimer(timerId, interval, timerType, object)); |
| 422 | +} |
| 423 | + |
| 424 | +QList<QAbstractEventDispatcher::TimerInfo > PythonQtWrapper_QAbstractEventDispatcher::registeredTimers(QAbstractEventDispatcher* theWrappedObject, QObject* object) const |
| 425 | +{ |
| 426 | + return ( theWrappedObject->registeredTimers(object)); |
| 427 | +} |
| 428 | + |
| 429 | +int PythonQtWrapper_QAbstractEventDispatcher::remainingTime(QAbstractEventDispatcher* theWrappedObject, int timerId) |
| 430 | +{ |
| 431 | + return ( theWrappedObject->remainingTime(timerId)); |
| 432 | +} |
| 433 | + |
| 434 | +void PythonQtWrapper_QAbstractEventDispatcher::startingUp(QAbstractEventDispatcher* theWrappedObject) |
| 435 | +{ |
| 436 | + ( theWrappedObject->startingUp()); |
| 437 | +} |
| 438 | + |
| 439 | +void PythonQtWrapper_QAbstractEventDispatcher::unregisterSocketNotifier(QAbstractEventDispatcher* theWrappedObject, QSocketNotifier* notifier) |
| 440 | +{ |
| 441 | + ( theWrappedObject->unregisterSocketNotifier(notifier)); |
| 442 | +} |
| 443 | + |
| 444 | +bool PythonQtWrapper_QAbstractEventDispatcher::unregisterTimer(QAbstractEventDispatcher* theWrappedObject, int timerId) |
| 445 | +{ |
| 446 | + return ( theWrappedObject->unregisterTimer(timerId)); |
| 447 | +} |
| 448 | + |
| 449 | +bool PythonQtWrapper_QAbstractEventDispatcher::unregisterTimers(QAbstractEventDispatcher* theWrappedObject, QObject* object) |
| 450 | +{ |
| 451 | + return ( theWrappedObject->unregisterTimers(object)); |
| 452 | +} |
| 453 | + |
| 454 | +void PythonQtWrapper_QAbstractEventDispatcher::wakeUp(QAbstractEventDispatcher* theWrappedObject) |
| 455 | +{ |
| 456 | + ( theWrappedObject->wakeUp()); |
| 457 | +} |
| 458 | + |
| 459 | + |
| 460 | + |
| 461 | +PythonQtShell_QAbstractEventDispatcher__TimerInfo::~PythonQtShell_QAbstractEventDispatcher__TimerInfo() { |
| 462 | + PythonQtPrivate* priv = PythonQt::priv(); |
| 463 | + if (priv) { priv->shellClassDeleted(this); } |
| 464 | +} |
| 465 | +QAbstractEventDispatcher::TimerInfo* PythonQtWrapper_QAbstractEventDispatcher__TimerInfo::new_QAbstractEventDispatcher__TimerInfo(int id, int i, Qt::TimerType t) |
| 466 | +{ |
| 467 | +return new PythonQtShell_QAbstractEventDispatcher__TimerInfo(id, i, t); } |
| 468 | + |
| 469 | + |
| 470 | + |
373 | 471 | PythonQtShell_QAbstractItemModel::~PythonQtShell_QAbstractItemModel() { |
374 | 472 | PythonQtPrivate* priv = PythonQt::priv(); |
375 | 473 | if (priv) { priv->shellClassDeleted(this); } |
@@ -6735,255 +6833,3 @@ QByteArray PythonQtWrapper_QCryptographicHash::result(QCryptographicHash* theWr |
6735 | 6833 | } |
6736 | 6834 |
|
6737 | 6835 |
|
6738 | | - |
6739 | | -QDataStream* PythonQtWrapper_QDataStream::new_QDataStream() |
6740 | | -{ |
6741 | | -return new QDataStream(); } |
6742 | | - |
6743 | | -QDataStream* PythonQtWrapper_QDataStream::new_QDataStream(QByteArray* arg__1, QIODevice::OpenMode flags) |
6744 | | -{ |
6745 | | -return new QDataStream(arg__1, flags); } |
6746 | | - |
6747 | | -QDataStream* PythonQtWrapper_QDataStream::new_QDataStream(QIODevice* arg__1) |
6748 | | -{ |
6749 | | -return new QDataStream(arg__1); } |
6750 | | - |
6751 | | -QDataStream* PythonQtWrapper_QDataStream::new_QDataStream(const QByteArray& arg__1) |
6752 | | -{ |
6753 | | -return new QDataStream(arg__1); } |
6754 | | - |
6755 | | -void PythonQtWrapper_QDataStream::abortTransaction(QDataStream* theWrappedObject) |
6756 | | -{ |
6757 | | - ( theWrappedObject->abortTransaction()); |
6758 | | -} |
6759 | | - |
6760 | | -bool PythonQtWrapper_QDataStream::atEnd(QDataStream* theWrappedObject) const |
6761 | | -{ |
6762 | | - return ( theWrappedObject->atEnd()); |
6763 | | -} |
6764 | | - |
6765 | | -QDataStream::ByteOrder PythonQtWrapper_QDataStream::byteOrder(QDataStream* theWrappedObject) const |
6766 | | -{ |
6767 | | - return ( theWrappedObject->byteOrder()); |
6768 | | -} |
6769 | | - |
6770 | | -bool PythonQtWrapper_QDataStream::commitTransaction(QDataStream* theWrappedObject) |
6771 | | -{ |
6772 | | - return ( theWrappedObject->commitTransaction()); |
6773 | | -} |
6774 | | - |
6775 | | -QIODevice* PythonQtWrapper_QDataStream::device(QDataStream* theWrappedObject) const |
6776 | | -{ |
6777 | | - return ( theWrappedObject->device()); |
6778 | | -} |
6779 | | - |
6780 | | -QDataStream::FloatingPointPrecision PythonQtWrapper_QDataStream::floatingPointPrecision(QDataStream* theWrappedObject) const |
6781 | | -{ |
6782 | | - return ( theWrappedObject->floatingPointPrecision()); |
6783 | | -} |
6784 | | - |
6785 | | -void PythonQtWrapper_QDataStream::resetStatus(QDataStream* theWrappedObject) |
6786 | | -{ |
6787 | | - ( theWrappedObject->resetStatus()); |
6788 | | -} |
6789 | | - |
6790 | | -void PythonQtWrapper_QDataStream::rollbackTransaction(QDataStream* theWrappedObject) |
6791 | | -{ |
6792 | | - ( theWrappedObject->rollbackTransaction()); |
6793 | | -} |
6794 | | - |
6795 | | -void PythonQtWrapper_QDataStream::setByteOrder(QDataStream* theWrappedObject, QDataStream::ByteOrder arg__1) |
6796 | | -{ |
6797 | | - ( theWrappedObject->setByteOrder(arg__1)); |
6798 | | -} |
6799 | | - |
6800 | | -void PythonQtWrapper_QDataStream::setDevice(QDataStream* theWrappedObject, QIODevice* arg__1) |
6801 | | -{ |
6802 | | - ( theWrappedObject->setDevice(arg__1)); |
6803 | | -} |
6804 | | - |
6805 | | -void PythonQtWrapper_QDataStream::setFloatingPointPrecision(QDataStream* theWrappedObject, QDataStream::FloatingPointPrecision precision) |
6806 | | -{ |
6807 | | - ( theWrappedObject->setFloatingPointPrecision(precision)); |
6808 | | -} |
6809 | | - |
6810 | | -void PythonQtWrapper_QDataStream::setStatus(QDataStream* theWrappedObject, QDataStream::Status status) |
6811 | | -{ |
6812 | | - ( theWrappedObject->setStatus(status)); |
6813 | | -} |
6814 | | - |
6815 | | -void PythonQtWrapper_QDataStream::setVersion(QDataStream* theWrappedObject, int arg__1) |
6816 | | -{ |
6817 | | - ( theWrappedObject->setVersion(arg__1)); |
6818 | | -} |
6819 | | - |
6820 | | -int PythonQtWrapper_QDataStream::skipRawData(QDataStream* theWrappedObject, int len) |
6821 | | -{ |
6822 | | - return ( theWrappedObject->skipRawData(len)); |
6823 | | -} |
6824 | | - |
6825 | | -void PythonQtWrapper_QDataStream::startTransaction(QDataStream* theWrappedObject) |
6826 | | -{ |
6827 | | - ( theWrappedObject->startTransaction()); |
6828 | | -} |
6829 | | - |
6830 | | -QDataStream::Status PythonQtWrapper_QDataStream::status(QDataStream* theWrappedObject) const |
6831 | | -{ |
6832 | | - return ( theWrappedObject->status()); |
6833 | | -} |
6834 | | - |
6835 | | -void PythonQtWrapper_QDataStream::unsetDevice(QDataStream* theWrappedObject) |
6836 | | -{ |
6837 | | - ( theWrappedObject->unsetDevice()); |
6838 | | -} |
6839 | | - |
6840 | | -int PythonQtWrapper_QDataStream::version(QDataStream* theWrappedObject) const |
6841 | | -{ |
6842 | | - return ( theWrappedObject->version()); |
6843 | | -} |
6844 | | - |
6845 | | - |
6846 | | - |
6847 | | -QDeadlineTimer* PythonQtWrapper_QDeadlineTimer::new_QDeadlineTimer(QDeadlineTimer::ForeverConstant arg__1, Qt::TimerType type_) |
6848 | | -{ |
6849 | | -return new QDeadlineTimer(arg__1, type_); } |
6850 | | - |
6851 | | -QDeadlineTimer* PythonQtWrapper_QDeadlineTimer::new_QDeadlineTimer(Qt::TimerType type_) |
6852 | | -{ |
6853 | | -return new QDeadlineTimer(type_); } |
6854 | | - |
6855 | | -QDeadlineTimer* PythonQtWrapper_QDeadlineTimer::new_QDeadlineTimer(qint64 msecs, Qt::TimerType type) |
6856 | | -{ |
6857 | | -return new QDeadlineTimer(msecs, type); } |
6858 | | - |
6859 | | -QDeadlineTimer PythonQtWrapper_QDeadlineTimer::static_QDeadlineTimer_addNSecs(QDeadlineTimer dt, qint64 nsecs) |
6860 | | -{ |
6861 | | - return (QDeadlineTimer::addNSecs(dt, nsecs)); |
6862 | | -} |
6863 | | - |
6864 | | -QDeadlineTimer PythonQtWrapper_QDeadlineTimer::static_QDeadlineTimer_current(Qt::TimerType timerType) |
6865 | | -{ |
6866 | | - return (QDeadlineTimer::current(timerType)); |
6867 | | -} |
6868 | | - |
6869 | | -qint64 PythonQtWrapper_QDeadlineTimer::deadline(QDeadlineTimer* theWrappedObject) const |
6870 | | -{ |
6871 | | - return ( theWrappedObject->deadline()); |
6872 | | -} |
6873 | | - |
6874 | | -qint64 PythonQtWrapper_QDeadlineTimer::deadlineNSecs(QDeadlineTimer* theWrappedObject) const |
6875 | | -{ |
6876 | | - return ( theWrappedObject->deadlineNSecs()); |
6877 | | -} |
6878 | | - |
6879 | | -bool PythonQtWrapper_QDeadlineTimer::hasExpired(QDeadlineTimer* theWrappedObject) const |
6880 | | -{ |
6881 | | - return ( theWrappedObject->hasExpired()); |
6882 | | -} |
6883 | | - |
6884 | | -bool PythonQtWrapper_QDeadlineTimer::isForever(QDeadlineTimer* theWrappedObject) const |
6885 | | -{ |
6886 | | - return ( theWrappedObject->isForever()); |
6887 | | -} |
6888 | | - |
6889 | | -bool PythonQtWrapper_QDeadlineTimer::__ne__(QDeadlineTimer* theWrappedObject, QDeadlineTimer d2) |
6890 | | -{ |
6891 | | - return ( (*theWrappedObject)!= d2); |
6892 | | -} |
6893 | | - |
6894 | | -QDeadlineTimer PythonQtWrapper_QDeadlineTimer::__add__(QDeadlineTimer* theWrappedObject, qint64 msecs) |
6895 | | -{ |
6896 | | - return ( (*theWrappedObject)+ msecs); |
6897 | | -} |
6898 | | - |
6899 | | -QDeadlineTimer* PythonQtWrapper_QDeadlineTimer::__iadd__(QDeadlineTimer* theWrappedObject, qint64 msecs) |
6900 | | -{ |
6901 | | - return &( (*theWrappedObject)+= msecs); |
6902 | | -} |
6903 | | - |
6904 | | -qint64 PythonQtWrapper_QDeadlineTimer::__sub__(QDeadlineTimer* theWrappedObject, QDeadlineTimer dt2) |
6905 | | -{ |
6906 | | - return ( (*theWrappedObject)- dt2); |
6907 | | -} |
6908 | | - |
6909 | | -QDeadlineTimer PythonQtWrapper_QDeadlineTimer::__sub__(QDeadlineTimer* theWrappedObject, qint64 msecs) |
6910 | | -{ |
6911 | | - return ( (*theWrappedObject)- msecs); |
6912 | | -} |
6913 | | - |
6914 | | -QDeadlineTimer* PythonQtWrapper_QDeadlineTimer::__isub__(QDeadlineTimer* theWrappedObject, qint64 msecs) |
6915 | | -{ |
6916 | | - return &( (*theWrappedObject)-= msecs); |
6917 | | -} |
6918 | | - |
6919 | | -bool PythonQtWrapper_QDeadlineTimer::__lt__(QDeadlineTimer* theWrappedObject, QDeadlineTimer d2) |
6920 | | -{ |
6921 | | - return ( (*theWrappedObject)< d2); |
6922 | | -} |
6923 | | - |
6924 | | -bool PythonQtWrapper_QDeadlineTimer::__le__(QDeadlineTimer* theWrappedObject, QDeadlineTimer d2) |
6925 | | -{ |
6926 | | - return ( (*theWrappedObject)<= d2); |
6927 | | -} |
6928 | | - |
6929 | | -bool PythonQtWrapper_QDeadlineTimer::__eq__(QDeadlineTimer* theWrappedObject, QDeadlineTimer d2) |
6930 | | -{ |
6931 | | - return ( (*theWrappedObject)== d2); |
6932 | | -} |
6933 | | - |
6934 | | -bool PythonQtWrapper_QDeadlineTimer::__gt__(QDeadlineTimer* theWrappedObject, QDeadlineTimer d2) |
6935 | | -{ |
6936 | | - return ( (*theWrappedObject)> d2); |
6937 | | -} |
6938 | | - |
6939 | | -bool PythonQtWrapper_QDeadlineTimer::__ge__(QDeadlineTimer* theWrappedObject, QDeadlineTimer d2) |
6940 | | -{ |
6941 | | - return ( (*theWrappedObject)>= d2); |
6942 | | -} |
6943 | | - |
6944 | | -qint64 PythonQtWrapper_QDeadlineTimer::remainingTime(QDeadlineTimer* theWrappedObject) const |
6945 | | -{ |
6946 | | - return ( theWrappedObject->remainingTime()); |
6947 | | -} |
6948 | | - |
6949 | | -qint64 PythonQtWrapper_QDeadlineTimer::remainingTimeNSecs(QDeadlineTimer* theWrappedObject) const |
6950 | | -{ |
6951 | | - return ( theWrappedObject->remainingTimeNSecs()); |
6952 | | -} |
6953 | | - |
6954 | | -void PythonQtWrapper_QDeadlineTimer::setDeadline(QDeadlineTimer* theWrappedObject, qint64 msecs, Qt::TimerType timerType) |
6955 | | -{ |
6956 | | - ( theWrappedObject->setDeadline(msecs, timerType)); |
6957 | | -} |
6958 | | - |
6959 | | -void PythonQtWrapper_QDeadlineTimer::setPreciseDeadline(QDeadlineTimer* theWrappedObject, qint64 secs, qint64 nsecs, Qt::TimerType type) |
6960 | | -{ |
6961 | | - ( theWrappedObject->setPreciseDeadline(secs, nsecs, type)); |
6962 | | -} |
6963 | | - |
6964 | | -void PythonQtWrapper_QDeadlineTimer::setPreciseRemainingTime(QDeadlineTimer* theWrappedObject, qint64 secs, qint64 nsecs, Qt::TimerType type) |
6965 | | -{ |
6966 | | - ( theWrappedObject->setPreciseRemainingTime(secs, nsecs, type)); |
6967 | | -} |
6968 | | - |
6969 | | -void PythonQtWrapper_QDeadlineTimer::setRemainingTime(QDeadlineTimer* theWrappedObject, qint64 msecs, Qt::TimerType type) |
6970 | | -{ |
6971 | | - ( theWrappedObject->setRemainingTime(msecs, type)); |
6972 | | -} |
6973 | | - |
6974 | | -void PythonQtWrapper_QDeadlineTimer::setTimerType(QDeadlineTimer* theWrappedObject, Qt::TimerType type) |
6975 | | -{ |
6976 | | - ( theWrappedObject->setTimerType(type)); |
6977 | | -} |
6978 | | - |
6979 | | -void PythonQtWrapper_QDeadlineTimer::swap(QDeadlineTimer* theWrappedObject, QDeadlineTimer& other) |
6980 | | -{ |
6981 | | - ( theWrappedObject->swap(other)); |
6982 | | -} |
6983 | | - |
6984 | | -Qt::TimerType PythonQtWrapper_QDeadlineTimer::timerType(QDeadlineTimer* theWrappedObject) const |
6985 | | -{ |
6986 | | - return ( theWrappedObject->timerType()); |
6987 | | -} |
6988 | | - |
6989 | | - |
0 commit comments