@@ -54,12 +54,12 @@ class PythonQtShell_QAbstractAnimation : public QAbstractAnimation
54
54
55
55
~PythonQtShell_QAbstractAnimation ();
56
56
57
- virtual void childEvent (QChildEvent* arg__1 );
58
- virtual void customEvent (QEvent* arg__1 );
57
+ virtual void childEvent (QChildEvent* event );
58
+ virtual void customEvent (QEvent* event );
59
59
virtual int duration () const ;
60
60
virtual bool event (QEvent* event);
61
- virtual bool eventFilter (QObject* arg__1 , QEvent* arg__2 );
62
- virtual void timerEvent (QTimerEvent* arg__1 );
61
+ virtual bool eventFilter (QObject* watched , QEvent* event );
62
+ virtual void timerEvent (QTimerEvent* event );
63
63
virtual void updateCurrentTime (int currentTime);
64
64
virtual void updateDirection (QAbstractAnimation::Direction direction);
65
65
virtual void updateState (QAbstractAnimation::State newState, QAbstractAnimation::State oldState);
@@ -126,13 +126,13 @@ class PythonQtShell_QAbstractItemModel : public QAbstractItemModel
126
126
virtual QModelIndex buddy (const QModelIndex& index) const ;
127
127
virtual bool canDropMimeData (const QMimeData* data, Qt::DropAction action, int row, int column, const QModelIndex& parent) const ;
128
128
virtual bool canFetchMore (const QModelIndex& parent) const ;
129
- virtual void childEvent (QChildEvent* arg__1 );
129
+ virtual void childEvent (QChildEvent* event );
130
130
virtual int columnCount (const QModelIndex& parent = QModelIndex()) const ;
131
- virtual void customEvent (QEvent* arg__1 );
131
+ virtual void customEvent (QEvent* event );
132
132
virtual QVariant data (const QModelIndex& index, int role = Qt::DisplayRole) const ;
133
133
virtual bool dropMimeData (const QMimeData* data, Qt::DropAction action, int row, int column, const QModelIndex& parent);
134
- virtual bool event (QEvent* arg__1 );
135
- virtual bool eventFilter (QObject* arg__1 , QEvent* arg__2 );
134
+ virtual bool event (QEvent* event );
135
+ virtual bool eventFilter (QObject* watched , QEvent* event );
136
136
virtual void fetchMore (const QModelIndex& parent);
137
137
virtual Qt::ItemFlags flags (const QModelIndex& index) const ;
138
138
virtual bool hasChildren (const QModelIndex& parent = QModelIndex()) const ;
@@ -161,7 +161,7 @@ virtual QSize span(const QModelIndex& index) const;
161
161
virtual bool submit ();
162
162
virtual Qt::DropActions supportedDragActions () const ;
163
163
virtual Qt::DropActions supportedDropActions () const ;
164
- virtual void timerEvent (QTimerEvent* arg__1 );
164
+ virtual void timerEvent (QTimerEvent* event );
165
165
166
166
const QMetaObject* metaObject () const ;
167
167
int qt_metacall (QMetaObject::Call call, int id, void ** args);
@@ -344,12 +344,12 @@ class PythonQtShell_QAbstractListModel : public QAbstractListModel
344
344
virtual QModelIndex buddy (const QModelIndex& index) const ;
345
345
virtual bool canDropMimeData (const QMimeData* data, Qt::DropAction action, int row, int column, const QModelIndex& parent) const ;
346
346
virtual bool canFetchMore (const QModelIndex& parent) const ;
347
- virtual void childEvent (QChildEvent* arg__1 );
348
- virtual void customEvent (QEvent* arg__1 );
347
+ virtual void childEvent (QChildEvent* event );
348
+ virtual void customEvent (QEvent* event );
349
349
virtual QVariant data (const QModelIndex& index, int role = Qt::DisplayRole) const ;
350
350
virtual bool dropMimeData (const QMimeData* data, Qt::DropAction action, int row, int column, const QModelIndex& parent);
351
- virtual bool event (QEvent* arg__1 );
352
- virtual bool eventFilter (QObject* arg__1 , QEvent* arg__2 );
351
+ virtual bool event (QEvent* event );
352
+ virtual bool eventFilter (QObject* watched , QEvent* event );
353
353
virtual void fetchMore (const QModelIndex& parent);
354
354
virtual Qt::ItemFlags flags (const QModelIndex& index) const ;
355
355
virtual QVariant headerData (int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const ;
@@ -376,7 +376,7 @@ virtual QSize span(const QModelIndex& index) const;
376
376
virtual bool submit ();
377
377
virtual Qt::DropActions supportedDragActions () const ;
378
378
virtual Qt::DropActions supportedDropActions () const ;
379
- virtual void timerEvent (QTimerEvent* arg__1 );
379
+ virtual void timerEvent (QTimerEvent* event );
380
380
381
381
const QMetaObject* metaObject () const ;
382
382
int qt_metacall (QMetaObject::Call call, int id, void ** args);
@@ -414,13 +414,13 @@ class PythonQtShell_QAbstractState : public QAbstractState
414
414
415
415
~PythonQtShell_QAbstractState ();
416
416
417
- virtual void childEvent (QChildEvent* arg__1 );
418
- virtual void customEvent (QEvent* arg__1 );
417
+ virtual void childEvent (QChildEvent* event );
418
+ virtual void customEvent (QEvent* event );
419
419
virtual bool event (QEvent* e);
420
- virtual bool eventFilter (QObject* arg__1 , QEvent* arg__2 );
420
+ virtual bool eventFilter (QObject* watched , QEvent* event );
421
421
virtual void onEntry (QEvent* event);
422
422
virtual void onExit (QEvent* event);
423
- virtual void timerEvent (QTimerEvent* arg__1 );
423
+ virtual void timerEvent (QTimerEvent* event );
424
424
425
425
const QMetaObject* metaObject () const ;
426
426
int qt_metacall (QMetaObject::Call call, int id, void ** args);
@@ -464,13 +464,13 @@ class PythonQtShell_QAbstractTransition : public QAbstractTransition
464
464
465
465
~PythonQtShell_QAbstractTransition ();
466
466
467
- virtual void childEvent (QChildEvent* arg__1 );
468
- virtual void customEvent (QEvent* arg__1 );
467
+ virtual void childEvent (QChildEvent* event );
468
+ virtual void customEvent (QEvent* event );
469
469
virtual bool event (QEvent* e);
470
- virtual bool eventFilter (QObject* arg__1 , QEvent* arg__2 );
470
+ virtual bool eventFilter (QObject* watched , QEvent* event );
471
471
virtual bool eventTest (QEvent* event);
472
472
virtual void onTransition (QEvent* event);
473
- virtual void timerEvent (QTimerEvent* arg__1 );
473
+ virtual void timerEvent (QTimerEvent* event );
474
474
475
475
const QMetaObject* metaObject () const ;
476
476
int qt_metacall (QMetaObject::Call call, int id, void ** args);
@@ -522,12 +522,12 @@ class PythonQtShell_QAnimationGroup : public QAnimationGroup
522
522
523
523
~PythonQtShell_QAnimationGroup ();
524
524
525
- virtual void childEvent (QChildEvent* arg__1 );
526
- virtual void customEvent (QEvent* arg__1 );
525
+ virtual void childEvent (QChildEvent* event );
526
+ virtual void customEvent (QEvent* event );
527
527
virtual int duration () const ;
528
528
virtual bool event (QEvent* event);
529
- virtual bool eventFilter (QObject* arg__1 , QEvent* arg__2 );
530
- virtual void timerEvent (QTimerEvent* arg__1 );
529
+ virtual bool eventFilter (QObject* watched , QEvent* event );
530
+ virtual void timerEvent (QTimerEvent* event );
531
531
virtual void updateCurrentTime (int currentTime);
532
532
virtual void updateDirection (QAbstractAnimation::Direction direction);
533
533
virtual void updateState (QAbstractAnimation::State newState, QAbstractAnimation::State oldState);
@@ -637,11 +637,11 @@ virtual bool atEnd() const;
637
637
virtual qint64 bytesAvailable () const ;
638
638
virtual qint64 bytesToWrite () const ;
639
639
virtual bool canReadLine () const ;
640
- virtual void childEvent (QChildEvent* arg__1 );
640
+ virtual void childEvent (QChildEvent* event );
641
641
virtual void close ();
642
- virtual void customEvent (QEvent* arg__1 );
643
- virtual bool event (QEvent* arg__1 );
644
- virtual bool eventFilter (QObject* arg__1 , QEvent* arg__2 );
642
+ virtual void customEvent (QEvent* event );
643
+ virtual bool event (QEvent* event );
644
+ virtual bool eventFilter (QObject* watched , QEvent* event );
645
645
virtual bool isSequential () const ;
646
646
virtual bool open (QIODevice::OpenMode openMode);
647
647
virtual qint64 pos () const ;
@@ -650,7 +650,7 @@ virtual qint64 readLineData(char* data, qint64 maxlen);
650
650
virtual bool reset ();
651
651
virtual bool seek (qint64 off);
652
652
virtual qint64 size () const ;
653
- virtual void timerEvent (QTimerEvent* arg__1 );
653
+ virtual void timerEvent (QTimerEvent* event );
654
654
virtual bool waitForBytesWritten (int msecs);
655
655
virtual bool waitForReadyRead (int msecs);
656
656
virtual qint64 writeData (const char * data, qint64 len);
@@ -889,6 +889,7 @@ void delete_QCoreApplication(QCoreApplication* obj) { delete obj; }
889
889
QString static_QCoreApplication_applicationName ();
890
890
qint64 static_QCoreApplication_applicationPid ();
891
891
QString static_QCoreApplication_applicationVersion ();
892
+ QStringList static_QCoreApplication_arguments ();
892
893
bool static_QCoreApplication_closingDown ();
893
894
bool py_q_event (QCoreApplication* theWrappedObject, QEvent* arg__1){ return (((PythonQtPublicPromoter_QCoreApplication*)theWrappedObject)->py_q_event (arg__1));}
894
895
QAbstractEventDispatcher* static_QCoreApplication_eventDispatcher ();
@@ -1238,6 +1239,7 @@ void delete_QElapsedTimer(QElapsedTimer* obj) { delete obj; }
1238
1239
qint64 restart (QElapsedTimer* theWrappedObject);
1239
1240
qint64 secsTo (QElapsedTimer* theWrappedObject, const QElapsedTimer& other) const ;
1240
1241
void start (QElapsedTimer* theWrappedObject);
1242
+ bool __nonzero__ (QElapsedTimer* obj) { return obj->isValid (); }
1241
1243
};
1242
1244
1243
1245
@@ -1288,11 +1290,11 @@ class PythonQtShell_QEventLoop : public QEventLoop
1288
1290
1289
1291
~PythonQtShell_QEventLoop ();
1290
1292
1291
- virtual void childEvent (QChildEvent* arg__1 );
1292
- virtual void customEvent (QEvent* arg__1 );
1293
+ virtual void childEvent (QChildEvent* event );
1294
+ virtual void customEvent (QEvent* event );
1293
1295
virtual bool event (QEvent* event);
1294
- virtual bool eventFilter (QObject* arg__1 , QEvent* arg__2 );
1295
- virtual void timerEvent (QTimerEvent* arg__1 );
1296
+ virtual bool eventFilter (QObject* watched , QEvent* event );
1297
+ virtual void timerEvent (QTimerEvent* event );
1296
1298
1297
1299
const QMetaObject* metaObject () const ;
1298
1300
int qt_metacall (QMetaObject::Call call, int id, void ** args);
@@ -1336,13 +1338,13 @@ class PythonQtShell_QEventTransition : public QEventTransition
1336
1338
1337
1339
~PythonQtShell_QEventTransition ();
1338
1340
1339
- virtual void childEvent (QChildEvent* arg__1 );
1340
- virtual void customEvent (QEvent* arg__1 );
1341
+ virtual void childEvent (QChildEvent* event );
1342
+ virtual void customEvent (QEvent* event );
1341
1343
virtual bool event (QEvent* e);
1342
- virtual bool eventFilter (QObject* arg__1 , QEvent* arg__2 );
1344
+ virtual bool eventFilter (QObject* watched , QEvent* event );
1343
1345
virtual bool eventTest (QEvent* event);
1344
1346
virtual void onTransition (QEvent* event);
1345
- virtual void timerEvent (QTimerEvent* arg__1 );
1347
+ virtual void timerEvent (QTimerEvent* event );
1346
1348
1347
1349
const QMetaObject* metaObject () const ;
1348
1350
int qt_metacall (QMetaObject::Call call, int id, void ** args);
@@ -1424,11 +1426,11 @@ virtual bool atEnd() const;
1424
1426
virtual qint64 bytesAvailable () const ;
1425
1427
virtual qint64 bytesToWrite () const ;
1426
1428
virtual bool canReadLine () const ;
1427
- virtual void childEvent (QChildEvent* arg__1 );
1429
+ virtual void childEvent (QChildEvent* event );
1428
1430
virtual void close ();
1429
- virtual void customEvent (QEvent* arg__1 );
1430
- virtual bool event (QEvent* arg__1 );
1431
- virtual bool eventFilter (QObject* arg__1 , QEvent* arg__2 );
1431
+ virtual void customEvent (QEvent* event );
1432
+ virtual bool event (QEvent* event );
1433
+ virtual bool eventFilter (QObject* watched , QEvent* event );
1432
1434
virtual QString fileName () const ;
1433
1435
virtual bool isSequential () const ;
1434
1436
virtual bool open (QIODevice::OpenMode flags);
@@ -1441,7 +1443,7 @@ virtual bool resize(qint64 sz);
1441
1443
virtual bool seek (qint64 offset);
1442
1444
virtual bool setPermissions (QFileDevice::Permissions permissionSpec);
1443
1445
virtual qint64 size () const ;
1444
- virtual void timerEvent (QTimerEvent* arg__1 );
1446
+ virtual void timerEvent (QTimerEvent* event );
1445
1447
virtual bool waitForBytesWritten (int msecs);
1446
1448
virtual bool waitForReadyRead (int msecs);
1447
1449
virtual qint64 writeData (const char * data, qint64 len);
0 commit comments